Untitled
By: a guest | Jul 29th, 2010 | Syntax:
JavaScript | Size: 0.21 KB | Hits: 17 | Expires: Never
jQuery('div[id^=highlighter_]').hover(
function() {
jQuery(this).animate({
width: '938px'
}, 1000);
},
function() {
jQuery(this).animate({
width: '99%'
}, 1000);
}
);