$('li').hover(function() {
$(this).addClass('over');
}, function() {
$(this).removeClass('over');
});
more Posts Tagged with prototype
JQuery :hover in Prototype
February 5, 2010 -
jQuery vs. Prototype
December 11, 2009 - jQuery
$(function() {
$('.external').click(function() {
window.open(this.href);
return false;
});
});
more