Problem with links as part of header
Hello folks,
Having the following issue. I have a header that has not only a link in it to open the accordion, but also a link in it to "get more info" regarding the title of the header [which is a different link to a different sub page]
It is structured like so:
- <div class="menu">
- <div class="header">
- <a href="#">title</a>
- <a href="http://someotherlink.com"><imr src="someicon.jpg" /></a>
- </div>
- <div class="subitems"></div>
- <div class="subitems"></div>
- <div class="subitems"></div>
- <div class="header">
- <a href="#">title</a>
- <a href="http://someotherlink.com"><imr src="someicon.jpg" /></a>
- </div>
- <div class="subitems"></div>
- <div class="subitems"></div>
- <div class="subitems"></div>
- </div>
This works perfectly, meaning that I can use the accordion just fine, as I init with "header:.header " but as stated above, the img icon links will NOT work, instead it opens the sub menu... meaning that the accordion over-rides the link from the href
:-(
is there any way I can get around this issue??
Thanks!