I want to display: none
, the save
button , when my html page opens in iframe.
How can I do it ?
This link might help me , but I did not understand this link.
iframe code
<HTML>
<BODY>
<iframe id="myiFrame" src="file:///C:/Users/Prashant/Desktop/test.html"> </iframe>
</BODY>
</HTML>
test.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<BODY>
<button id="hideInIframe" >save</button>
<button id="getData" >get</button>
</BODY>
</HTML>