I have a page, with some code in js and jQuery and it works very well. But unfortunately, all my site is very very old, and uses frames. So when I loaded my page inside a fr
If you want to fire the onload
event for your frames, then follow these steps:
Assign an id
and name
to each tag. Make sure both
id
and name
attributes value is same.
Use the following code to fire the onload
event of the frame:
$("frameName").ready(function() {
// Write your frame onload code here
}