/ Published in: JavaScript
Expand |
Embed | Plain Text
var xmlhttp = new XMLHttpRequest(); xmlhttp.open('POST', 'http://whatever.com/myscript.php', true); xmlhttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); xmlhttp.onreadystatechange = function() { }; xmlhttp.send('param=5');
You need to login to post a comment.
