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

Friday, June 7, 2013

Codeschool Sample Solution Mouseleave



$(document).ready(function() {
  $("#tour").on("click", "button", function() {
    $(".photos").slideToggle();
  });
  $(".photos").on("mouseenter", "li", function() {
    $(this).find("span").slideToggle();
  });
  $(".photos").on("mouseleave", "li", function() {
    $(this).find("span").slideToggle();
  });
});

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts