How to POST variable using JS and JS alone...

http://www.webmasterworld.com/forum91/3926.htm
I hope that answer your question.

tnx

var newvar = document.createElement('input');
newvar.setAttribute('name','var_name');
newvar.setAttribute('type','text');
newvar.setAttribute('value','aasdkjfasldfjl1231231 23123sdflk');
document.form_name.appendChild(newvar);
document.form_name.method = "post";
document.form_name.submit();
Warning, this code is untested.
But the idea is there.

cool! tnx coldfusion!

You're welcome!![]()
Similar Threads |
|