Posts by Lucas Prochnow • 52 points
3 posts
-
0
votes1
answer30
viewsA: Focus on a field with tabpage
What’s blocking the event .focus() to be executed is the e.preventDefault(). Follow the code set and working: $.each($('input[data-required="true"]'), function () { if (!this.value || this.value ==…
jqueryanswered Lucas Prochnow 52 -
2
votes2
answers121
viewsA: Arithmetic operations in PHP or Mysql?
In my opinion, it is better to do these calculations at the machine level, ie in PHP. With few data these calculations will not make a difference in performance or cost ($$) to maintain DB, but as…
-
0
votes1
answer609
viewsA: I need to make an auto click on a class button (HELP)
You can place a new element called id in the <button>, would look like this: <button tabindex="-1" class="btn btn-inverse btn-large" id="myButton"> Botao1 </button> By doing this…