Advertisement
julong

remove class from last items

Jan 8th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <div class="ul-list">
  2. <ul class="menu-admin">
  3.  
  4. <li class="level1 current"><a href="javascript:void(0);" onclick="call(1)">1</a></li>
  5. <li class="level1"><a href="javascript:void(0);" onclick="call(2)">2</a></li>
  6. <li class="level1"><a href="javascript:void(0);" onclick="call(3)">3</a></li>
  7. <li class="level1"><a href="javascript:void(0);" onclick="call(4)">4</a></li>
  8. <li class="level1"><a href="javascript:void(0);" onclick="call(5)">5</a></li>
  9.  
  10. </li>
  11. </ul>
  12. </div>
  13. <script type="text/javascript">
  14. (function () {
  15. $('.menu-admin li a').click(function(){
  16. var item=$(this).parent();
  17. $('li').removeClass('current');
  18. item.addClass("current")
  19. });
  20. })();
  21. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement