Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Jul 29th, 2010 | Syntax: JavaScript | Size: 0.21 KB | Hits: 17 | Expires: Never
Copy text to clipboard
  1.         jQuery('div[id^=highlighter_]').hover(
  2.                 function() {
  3.                         jQuery(this).animate({
  4.                                 width: '938px'
  5.                         }, 1000);
  6.                 },
  7.                 function() {
  8.                         jQuery(this).animate({
  9.                                 width: '99%'
  10.                         }, 1000);
  11.                 }
  12.         );