Prakhar Thakur
Prakhar Thakur

Reputation: 1229

Trigger a function when iframe completely loaded

Is there a way to trigger a function when an iframe on the same page is loaded completely.

Upvotes: 1

Views: 59

Answers (1)

Bernie
Bernie

Reputation: 5055

Try the onload Event

Example:

document.getElementById('ifrm').onload = function() {
    // put your code here
}

Upvotes: 2

Related Questions