document.href ?
document.href ?
I have an <IMG> to which I attached a
click event.
Now I want that event to act like a hyperlink and take the user to a new page.
What is the JQuery equivalent of document.href() to make the new page replace the current in the browser?
-
$('img#myimg').bind('click', function(evt) {
//what do I do here to change page to xxxx.html ?
});