#4480 closed bug (worksforme)
.ready doesn't work if placed after iframe
Reported by: | bjohns | Owned by: | brandon |
---|---|---|---|
Priority: | minor | Milestone: | 1.3.1 |
Component: | event | Version: | 1.3.1 |
Keywords: | iframe, ready | Cc: | |
Blocked by: | Blocking: |
Description
$().ready() doesn't work if declared after an iFrame.
ex. <html><head/><body> <iframe src="http://google.com"/> <script type="text/javascript" src="js/jquery.js"></script> <script> $().ready(function() { alert('ready'); }); </script>
Change History (2)
comment:1 Changed 12 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
comment:2 Changed 11 years ago by
I had this same issue. What fixed it for me was to add </iframe> instead of using a self-closing tag.
Note: See
TracTickets for help on using
tickets.
http://jsfiddle.net/dmethvin/tczRv/