New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Language: HTML

jQuery Selector

80 Views
Copy Code Show/Hide Line Numbers
   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
Tags:

Add a comment


Report Abuse
brought to you by:
West Wind Techologies


If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate