Language: HTML
jQuery Selector
1: <html> 2: <head> 3: <script src="http://ajax.microsoft.com/ajax/jquery/jquery-1.3.2.min.js" 4: 5: type="text/javascript"></script> 6: <script> 7: $(document).ready(function() 8: { 9: $('a[href^=http://]').each(function() 10: { 11: var link = $(this); 12: if (link.attr('href').indexOf('http://10rem') == -1) 13: alert(link.attr('href')); 14: }); 15: }); 16: </script> 17: </head> 18: <body> 19: <a href="http://www.microsoft.com">Microsoft</a> 20: <a href="http://10rem">Other</a> 21: </body> 22: </html>
by
March 03, 2010 @ 8:24pm
March 03, 2010 @ 8:24pm
Tags:
Report Abuse
Subscribe
Discuss
What's new
What is it
New Snippet
Recent Snippets
My Snippets
Web Code
Search

