Oh man, I\'ve been tearing my hair out over this. 4 hours on a dropdown.
I\'m using Twitter Bootstrap.
The fixed nav at the top has a dropdown, pretty standard s
You can also add propagate click event from the parent page with this code (fixed the same issue for me):
var myFrameContents = document.getElementById("frame").contentWindow.document; myFrameContents.body.addEventListener("click", function() { document.body.click(); });