Posts by DayvisonFavacho • 26 points
3 posts
-
0
votes1
answer60
viewsA: Ajax and PHP form open dynamic list with SQL query
Hello, you should note the return of the call to service classifiers_HelpCenter_ajax in the browser console / open the Network tab search in Name => classifier_HelpCenter_ajax and click on it…
-
1
votes4
answers72
viewsA: Remove Class after Click
hello your code is right, the problem is that you should be clicking in a place where you do not catch the event, try to change the div class="sidebar-mobile d-block d-Sm-None" id="sidebar-show"…
jqueryanswered DayvisonFavacho 26 -
0
votes3
answers713
viewsA: Send a string name via post using javascript
Hello, I think you could use Jquery and do as follows: $('#btn').click(function(){ var nome= $("#nome").val(); $.post("caminho_da_serve", "&variavel=" + nome , function(result) { }); });…