/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
var xmlhttp = new XMLHttpRequest(); xmlhttp.open('GET', 'http://whatever.com/myscript.php?param=5', true); xmlhttp.onreadystatechange = function() { }; xmlhttp.send(null);