Is this possible to call a javascript funciton(save cookies() here for example)before redirecting to a new page(sample.html in my example).
I need to save cookies before i navigate to new page.
a href=/dashboard/sample.html onclick="savecookies()"
|
Is this possible to call a javascript funciton(save cookies() here for example)before redirecting to a new page(sample.html in my example). I need to save cookies before i navigate to new page.
|
||||
|
|
|
use something like this:
|
|||
|
|
|
Make a single function and paste the code for saving cookies and then at the end of the function paste the code for navigation. |
|||
|
|
|
Yes you can do it via JQuery. You can set any anchor link with a class
Then in Jquery
You can even "unprevent" and let the href without "#" simbol but i prefer this way IMHO it's better if you handle it. |
|||
|
|
|
you dont need to redirect through JS code, just grab the link and bind a click function to it which executes your function and then returning true;
|
|||
|
|