View Single Post
  #5 (permalink)  
Old 02-12-07, 07:09 PM
Contrid Contrid is offline
Newbie Coder
 
Join Date: Dec 2006
Location: Online
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
For the image, you can do something like this :

HTML Code:
<img id="myImage" src="images/filename.gif" style="visibility:hidden;" />
and then use JavaScript to make it visible when the submit button is clicked :

HTML Code:
document.getElementById('myImage').style.visibility = "visible";
Good luck
If you have any questions, post them here.
__________________
Free, useful scripts - www.tribulant.com
Reply With Quote