Return to Snippet

Revision: 56954
at April 26, 2012 21:57 by kzelda


Initial Code
$("body").append("<img id='imgwait1' class='ajax-indicator' src='indicator.gif' style='position:absolute,top' ></img>");
$(document).mousemove(function(e){
	  $('#imgwait1').offset({left:e.pageX+10,top:e.pageY});
   });
   
   
$('#imgwait1').remove();
$(document).unbind('mousemove');

Initial URL


Initial Description
Move 'Ajax indicator image' with cursor

Initial Title
Move 'Ajax indicator image' with cursor

Initial Tags


Initial Language
jQuery