Posts by Rodrigo de Farias • 201 points
4 posts
-
4
votes4
answers2605
viewsA: Breakpoint in visual studio does not load at debug
Have you tried to check if the project you are debugging is marked as the main project? When I use more than one project sometimes it happens to me. If I have two web projects in the same Solution…
-
0
votes2
answers25
viewsA: Slider does not work clearInterval function by clicking the button next back to previous photo
You just forgot to declare var intervalglobally. var satual =1, smax=3, stmp=3000, interval = null; // ocultando os tres imagens e exibindo o 1º function troca(){…
javascriptanswered Rodrigo de Farias 201 -
1
votes2
answers97
viewsA: I would like to know how to pass the value of a Radius via post with ajax or jquery
Take the values by id. <script> var value = $("#valorum").val(); $.ajax({ method: "GET", data: { suaVariavelDoServidor: value }, url: "test.js", dataType: "script" }); </script> If you…
-
2
votes2
answers466
viewsA: How to make a listbox where I can select more than one value?
Select2 is an appropriate plugin for this case something a little more elegant. Just download and place the css in the header and the javascript files at the bottom of the page, before the end of…