Jump to content
  • 0

И снова подсветка текущего раздела


Torawhite
 Share

Question

Здравствуйте! Есть скрипт подсветки раздела - добавляет класс родительскому элементу. Работает даже при передаче в адресной строке GET-параметров и с учётом вложенности каталога. НО! У меня есть каталог /magazine/male_articles/ а есть вложенные каталоги, например /magazine/male_articles/some_category/. Когда переходишь в категорию, то класс добавляется и текущему разделу, и общему разделу /magazine/male_articles/, то бишь этот раздел главный, а остальные - вложенные и, так как он присутствует в адресе каждой вложенной ссылки, то и подсвечивается постоянно. Как можно убрать с него подсветку при выборе подкатегорий?

Сам скрипт:

$(function () {$('.magazine_nav ul li a').each(function () {var location = window.location.hrefvar link = this.hrefvar result = location.match(link);if(result != null) this.parentNode.className = "active_article";});});
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

ой.. перечитал, что я написал - ерунду:)
Вот вариант получше. Должен работать!

$(function () {    var link = $('.magazine_nav ul li a').filter(function() {	return location.href.match(this.href);    }).last().parent().addClass('active_article');});
Link to comment
Share on other sites

  • 0

 

ой.. перечитал, что я написал - ерунду :)

Вот вариант получше. Должен работать!

$(function () {    var link = $('.magazine_nav ul li a').filter(function() {	return location.href.match(this.href);    }).last().parent().addClass('active_article');});

Да! Так работает! Спасибо огромное! :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy