Drupal 6, how to identify active menu item by url parameters (full link), ?q=page1&filter=10
- by OlgaV
I have a submenu that has all items linked to the same node, but with different additional parameters, for ex:
...
<li...><a href = "/?q=page1&filter=10" class = "... active">Item1</a></li>
<li...><a href = "/?q=page1&filter=11" class = "... active">Item2</a></li>
...
in this case all items have class 'active' and none of them has class 'active-trail'.
Is there any way to identify the true active link (for styling purposes)?
any suggestions will be much appreciated!