js fancybox and safari issue: cannot quit the modal dialog in safari!
functions fine in every other browser but safari. selector is for a.class, in my case: $("a.nav")
When I do <a class="nav" href=page.html><img src=icon.png/></a>
, it becomes not possible to close out of the modal dialog by clicking o开发者_如何学运维utside of the dialog or clicking the x icon.
what is my problem?
thanks in advance
hideOnContentClick = true?
Also a long shot but quoting the href and src attributes wouldn't hurt.
honestly after a few hours I realized the src was an issue:
heres the offending line: "nothing can hurt me: the big star story.html"
<a class="nav" href="test.html" id="">
<img src="b5.png" width="71" height="93">
</a>
<a class="nav" href="nothing can hurt me: the big star story.html" id="">
<img src="b6.png" width="71" height="93">
</a>
精彩评论