stefan22
8/6/2017 - 6:12 PM

hides iframe until fully loaded post data to iframe

hides iframe until fully loaded

post data to iframe

<iframe style="visibility:hidden;" onload="this.style.visibility = 'visible';" src="../examples/inlineframes1.html" > </iframe>

<!-- post data to iframe  -->

<form action="iframe.php" target="my-iframe" method="post">
			
  <label for="text">Some text:</label>
  <input type="text" name="text" id="text">
			
  <input type="submit" value="post">
			
</form>
		
<iframe name="my-iframe" src="iframe.php"></iframe>