Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function ()
- {
- $("div").hover(function ()
- {
- $(this).addClass("green");
- $(this).find("h3").addClass("red");
- },function ()
- {
- $(this).removeClass("green");
- $(this).find("h3").removeClass("red");
- })
- $("li").each(function (i)
- {
- $(this).append(" "+(i+1));
- n++;
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment