Posts by Andre Neto • 171 points
5 posts
-
1
votes1
answer434
viewsA: How to insert countdown into table? HTML and Javascript
Follows solution to your problem: https://jsfiddle.net/tnym8dLe/
-
6
votes4
answers94
viewsA: What’s wrong with this Javascript code?
Use querySelectorAll to search for the list of elements, querySelector will bring only the first span in this case.
javascriptanswered Andre Neto 171 -
1
votes4
answers353
viewsA: use F2 to click on jquery button
Follows solution: <button id="finalizar" onclick='document.location="google.com"'>FINALIZAR</button> $(window).on("keyup", function(event) { if (event.keyCode == 113) {…
-
3
votes1
answer861
viewsA: How do SELECT not allow selecting an option already selected in another select?
See if that solves your problem: $(".selectpicker").on("change", function() { var self = $(this); var values = self.val(); $(".selectpicker").not(self).each(function() { var _values = $(this).val();…
-
0
votes1
answer672
viewsA: Select register in angular pagination
Opa, cara... Do not use index in this situation, because the index 1 of page 1 is the same as page 2, correct?! In this case I used a unique identifier (ID) to work, just change <tr…