I'm using this code:
<div class="youtube">
some text and images
<iframe width="500" height="370" src="http://youtube.com/ID" frameborder="0" allowfullscreen></iframe>
</div>
and this is the CSS for "youtube"
.youtube{
opacity: 0;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=80);
}
I'd like to know if there is some way to, hide this iframe completely after the first click.
I'm really a beginner in programming, so detailed help would be great.