I am relatively new to Jquery and I was wondering how would one post variables to another page and then redirect? I used ajax function, the redirect works fine, but no varia
This answer is just for a quick fix
why don't you just pass as query string here
window.location = "LinkTagOut.aspx?variabletopass=test";
Trigger the handler $('#target').submit(function() { $.post('ajax/test.html', function(data) { }); return false; });