Is it possible to redirect the browser to a separate page after a jQuery function?
For example:
$(".blah").click(function () {
$(".block").fadeIn("slow");
});
As soon as the fade in animation is complete load the webpage
"foo.html"
Is it possible to redirect the browser to a separate page after a jQuery function?
For example:
$(".blah").click(function () {
$(".block").fadeIn("slow");
});
As soon as the fade in animation is complete load the webpage
"foo.html"