Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. $(window).load(function () {
  2.  
  3. $('div ul li a').filter(function () {
  4. if (!$('div ul li a').hasClass('atitleTabs')) {
  5. alert('Got Anchor without the particlauar class');
  6. alert($('div ul li a').attr('href'));
  7. } else {
  8. alert('Got Anchor with class');
  9. }
  10.  
  11. });
  12.  
  13. });
  14.  
  15. $('div[id*="tab"] a[href*="#tab"]:not(".atitleTabs")').remove();
  16.  
  17. $('div[id*="tab"] a[href*="#tab"])').filter(':not(".atitleTabs")').remove();
  18.  
  19. $('[id*="tab"]').find('[href*="#tab"]').remove();
  20.  
  21. $("[id*=tab]").find("[href*='#tab']").remove();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement