iframe on first click

borge009

Newbie
Joined
Apr 24, 2010
Messages
4
Reaction score
1
just want to ask how to enable an iframe to popup when a user clicks anywhere on the page or click for the first time? Thanks
 
Code:
<body onclick="document.getElementById('myIframe').style.display='';">
<iframe id="myIframe" style="display: none;" />
untested.
 
Back
Top