Jump to content

Preview images help


acidglitter

Recommended Posts

 

<script language="javascript">
function displayIt(what) {
document.getElementById(what).style.display="inline";
}
function hideIt(what) {
document.getElementById(what).style.display="none";
}
</script>

<img src="" width=50 height=50 onmouseover="displayIt('pic1')" onmouseout="hideIt('pic1')">
<div id="pic1" style="position:absolute;margin:0;background:#FFFFFF;border:solid 1px #000000;width:200px;height:200px;display:none">
<img src="" width=200 height=200>
</div>

Link to comment
https://forums.phpfreaks.com/topic/89605-preview-images-help/#findComment-459194
Share on other sites

  • 1 month later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.