jquery rollover that follows mouse


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $("#certificates_date_hint").mouseover(function(e){
  2. $(".date_hint_message").fadeIn().css("top",(e.pageY - 15) + "px").css("left",(e.pageX + 15) + "px")
  3. });

Report this snippet


Comments


You need to login to view comments.