Skip to content

Instantly share code, notes, and snippets.

@asilbalaban
Created January 3, 2014 14:52
Show Gist options
  • Save asilbalaban/8239121 to your computer and use it in GitHub Desktop.
Save asilbalaban/8239121 to your computer and use it in GitHub Desktop.
Mevcut sayfayı seçili hale getir
$('nav#nav ul li a').each(function() {
if ($(this).attr('href') === window.location.href) {
$(this).parent('li').addClass('current_page_item');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment