Change cursor on hover


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



Copy this code and paste it in your HTML
  1. $('#searchform button').hover(function() {
  2. $(this).css('cursor','pointer');
  3. }, function() {
  4. $(this).css('cursor','auto');
  5. });

URL: http://weblog.intunet.co.uk/blog-article/jquery-tutorial/

Report this snippet


Comments


You need to login to view comments.