2
votes
jQuery AJAX - made browser request new location in redirect header
jQuery does what it is expected to do: follow redirects automatically and go fetch the final page.
You can go to http://jigsaw.w3.or …
0
votes
Is it possible to populate a SELECT dropdown when clicking on it?
you can also cheat: onclick , substitute the options with one that just says "Loading..." and let it display normally. Then, when you have the correct data, you put it in the select and make it dis …
1
vote
Replacing whole HTML content kills HEAD and BODY tags after HTTP Request!
well, with this
document.getElementsByTagName('html')[0].innerHTML = http_request.responseText
you are replacing everything insidee the html, "killing" body, head …
0
votes
1
vote
Using ajax to send GET to php file after change to input
I think this part in the onclick in the input
update_program($i, $j, this.input.date.value)
should be
update_program($i, $j, this.value)
…
3
votes
JQuery $.get or $.ajax call PHP script on server that requires 2 parameters
you have to use a callback, or call it synchronously:
$.get("exchangeRate.php", {exchangeFrom:"what",exchangeTo:"ever"},function(resp){
alert(resp);
//resp is what your page …
