Hello all, I'm having an issue with JQuery and Safari (Windows Version). The code works on FF/IE7/Chrome but not Safari.
I have a simple <li> that has a <div> embedded in to - clicking the <li> should expose the hidden div, but not in Safari. The HTML: <ul> <li>something</li> <li>something2</li> <li class="more"> <a class="moreFacetsLink">Click to see more options<a> <div class="moreFacets>bunch of text</div> </li> </ul> Here is the JQuery code: $('.moreFacetsLink').click(function () { $(this).siblings('div').toggle(); }); Any thoughts as to what may be going on here? I'm a newbie when it comes to JQuery. Thanks!