Return to Snippet

Revision: 27645
at June 18, 2010 17:29 by loric


Initial Code
$('nav a').each(function()
{
   var hreflink = $(this).attr("href"); 
   if (hreflink.toLowerCase()==location.href.toLowerCase())
   {
      $(this).addClass('selected');
   }
});

Initial URL


Initial Description


Initial Title
Highlight selected navigation or menu item

Initial Tags


Initial Language
jQuery