Forum Moderators: open
I've an iframe (again ;p)
When I hide it, I want the iframe source to be changed to :
<html><body bgcolor="#000000">Loading...</body></html>
So when I'll make it visible back with a new page to load inside, there will be a loading... message until the new page will start to load.
MY QUESTION: How can I change the source of an iframe?
I've tried:
document.getElementById("pjactionifrm").body.write = "Blabla"
document.getElementById("pjactionifrm").write = "Blabla"
document.getElementById("pjactionifrm").innerHTML = "Blabla"
document.getElementById("pjactionifrm").outerHTML = "Blabla"
Nothing seem to work...
Any solution?