Quotes help make search much faster. Example: "Practice Makes Perfect"

Monday, November 12, 2012

Codecademy: Sample solution to "show(), hide()"



//sample solution to script.js
$(document).ready(function(){
//your code here
$('.items').mouseover(function(){
$(this).children('a').show();
$(this).children('a').animate({
    width: 100
  }, 2500, function() {
    // Animation complete.
  });
});
$('.items').mouseout(function(){
$(this).children('a').hide();
});
});

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts