I am looking at the robot

Posts Tagged with jquery

JQuery :hover in Prototype

February 5, 2010 -
$('li').hover(function() {
  $(this).addClass('over');
}, function() {
  $(this).removeClass('over');
});
more

jQuery vs. Prototype

December 11, 2009 - jQuery
$(function() {
  $('.external').click(function() {
    window.open(this.href);
    return false;
  });
});
more