I'm using Fancybox to load a form as an Iframe, but for some reason my $(document).ready(开发者_运维技巧function ()
isn't working for some reason.
Any idea why?
Without seeing any of your code, I'm going to take a wild guess (but it's something I've seen quite a bit of)...
Are you trying to do some interaction with the host page from within the iFrame (and the content in the iFrame is coming from a different domain)? If so, that is considered a cross-site scripting security issue and most modern browsers will block the calls.
Check/Enable Javascript errors (or look at the Javascript console if your browser has one) and see if you're getting any specific error messages.
See Detecting DOM Ready State Within an iFrame (jQuery).
精彩评论