Posts by Adriano Maciel • 16 points
3 posts
-
0
votes4
answers958
viewsA: Send form without close modal
One reason why the modal is closed may be by submitting the form. To avoid there are two ways: Using Return false $("#form1").submit(function(event){ // event.preventDefault(); //prevent default…
-
0
votes1
answer39
viewsA: Function to get text value from a accessed URL
Follow an idea of how I would do: var arrayAmount = Array(); $(document).ready(function(){ // quando o documento estiver ok, buscar os dados no servidor buscarNoServidor(); } function…
-
0
votes1
answer1432
viewsA: Basic Auth to authenticate webservice Soap - PHP
Good afternoon! I did a quick test locally, with a service wsdl done in PHP, using Basic Auth HTTP. I was able to authenticate by logging in and password directly to Soapclient. $client = new…