I have a button which loads after a ajax call , on clicking i want to reload the page (like i press f5)
I tried
$( \".delegate_update_success\" ).click
simple way can be -
just href="javascript:location.reload(true);
href="javascript:location.reload(true);
your answer is
location.reload(true);
Thanks