Aamit -7 Posting Whiz

I am using IFrame to load a webpage into it.
When the page is getting loaded into the IFrame the status bar shows the actual link of
that webpage i.e. "Waiting for http://www.abc.com/index.php".

So, I want to hide this status message or change it to something else.

<script type="text/javascript" language="javascript">
  function statwords(message)
  {
	window.status = message;
  }
</script>

<body onload="statwords('Hello');">
<iframe src="http://www.abc.com/index.php" id="myiframe"  name="myiframe" width="800" height="600"></iframe>

</body>

I tried using window.status = ' '; and window.defaultStatus = ' ';
but nothing worked as required.

Please Tell me how to Change Status of Iframe.

I am Using Firefox 3.6 and IE8

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.