here is a working example to redirect to a page sending post values
<a href="#" onClick="someFunc(); document.formname.submit(); return false;" >click to post</a>
<form name="formname" action="/somepage.php" method="post">
<input type="hidden" name="postName" value="something">
</form>
It works. http://www.avramovic.info/razno/jquery/redirect/demo.php does the same thing by using js to create the form for you. jQuery().redirect(‘/redirurl/’, {‘arg1’: ‘value1’, ‘arg2’: ‘value2’});
How to accomplish the same thing without plugins?
Just use the raw JS “version” of the code given: