I am using jQuery 1.2.6 :(
When a user clicks on Html element with ID=LINKID and having anchor tags, he would be redirected to a new page. I want to make sure that a small image is fetched before the browser moves to a different page.
Is there any way using callbacks or any other mechanism in jQuery.
HTML:
<div id="LINKID"><a href="link location"> </a></div>
SCRIPT:
jQuery("#LINKID a").click(function(){
var url = "Image location";
(new Image()).src = url;
});
If I add a hack like this after the above snippet.
jQuery("#LINKID a").click(function() { return false; } );
I can see the image being fetched but it will this stop the functionality associated with tag
hrefattribute? That is what you mean? – Konrad Dzwinel Jan 20 '12 at 19:17