ivana_andreevska

Random Vezba od jQuery

Nov 3rd, 2021
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.  
  3. $(document).ready(function ()
  4. {
  5.    $("div").hover(function ()
  6.    {
  7.       $(this).addClass("green");
  8.       $(this).find("h3").addClass("red");
  9.    },function ()
  10.    {
  11.        $(this).removeClass("green");
  12.        $(this).find("h3").removeClass("red");
  13.    })
  14.  
  15.    $("li").each(function (i)
  16.    {
  17.     $(this).append(" "+(i+1));
  18.     n++;
  19.    });
  20.  
  21.  
  22. });
Advertisement
Add Comment
Please, Sign In to add comment