Posts by Adiel Silva • 51 points
3 posts
-
0
votes1
answer161
viewsA: Event change with ajax
As I don’t know exactly what technology you are using, I will share a solution I adopted using only ajax. $('idElemento'). change(Function (){ var valor = $( this ).val(); if(valor ==…
-
1
votes1
answer331
viewsA: Exercise of conditionals
It makes sense, since the comparison you are making is <=1.2 (less than or equal to 1.2) and 1.1 enters this condition, just change to >= 1.2 I suppose
-
-1
votes1
answer47
viewsQ: How to remove div from the page to appear only in Popover
$('#texto').popover({ html: true, content: function () { return $('#teste').html(); } }); <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>…