I know that there is simple solution which i know but i couldn’t remember now.
I want to use get method of jquery but not asynchronous or synchronous. I want to post whole page.
Below i go to ‘myurladress’.
$('<a>').attr('href','myurladress').trigger('click');
/// :) i want to achieve same effect but shortly :))
I’m going to hazard a guess that you want to know how to redirect to another page using JavaScript, in which case you’d use
window.location. For example:Typically this is a bad idea, but there are a few niche cases where this can be useful. Especially when dealing with a different window handle (popouts etc.).