Posts by Laysson Enderson • 31 points
3 posts
-
3
votes2
answers59
viewsQ: Run task only when CTRL and mouse are pressed
I need to move the <input type="range"> only when the CTRL and the left mouse click are pressed. I managed to do this with this code: $(document).keydown(function(e) { if (e.which == 17) {…
javascriptasked Laysson Enderson 31 -
0
votes1
answer200
viewsA: Copy specific XML file TAG and merge with another XML file
I managed to do it in a simple way using Xpathnavigator in C#. In this case I’m putting nf together with a notasGeral.xml file where all the tax notes are located. private void button2_Click(object…
-
0
votes1
answer200
viewsQ: Copy specific XML file TAG and merge with another XML file
Situation: - I need a single XML file that contains the data of all other existing and upcoming files. But I can’t just join one file with the other and I just need a specific tag. Is there any way…