New Web Page design

liunx

Guest
Can someone TELL ME or show me where to go to obtain HTML code or Java script that will allow me to do the following on my webpage.<br />
<br />
I want to have thumbnails that when either 1) rolled over by mouse it shows the actual size of the picture(Jpeg) next to it or somewhere on the page or 2) when you clicked on the thumbnail a second pop up box appears with the orginal picture within the existing webpage.<br />
<br />
I do not want a 2nd webpage to appear when you click on the thumbnail where as you have to close this page to go back to the orginal.<br />
<br />
Is this possible to do? I consider myself a slightly better then novice at webpage building but I am learning !!<!--content-->This explains how to do it:<br />
<!-- m --><a class="postlink" href="http://builder.cnet.com/webbuilding/pages/Programming/Scripter/050200/">http://builder.cnet.com/webbuilding/pag ... er/050200/</a><!-- m --><!--content-->Originally posted by starrwriter <br />
This explains how to do it:<br />
<!-- m --><a class="postlink" href="http://builder.cnet.com/webbuilding/pages/Programming/Scripter/050200/">http://builder.cnet.com/webbuilding/pag ... er/050200/</a><!-- m --> The scripts on that page are bad, really bad. They unnecessarily give you a link that does nothing fro the 13% of users who do not use JavaScript. <br />
<br />
LONG7TIME, <br />
Your request is a little confusing to me but never use something like <a href=http://www.webdeveloper.com/forum/archive/index.php/"javascript:void()" onclick="showPick('image.png')">. With one little change you can keep things working for everybody and avoid much embarrassment and possibly a law suit. Use something more like <a href=http://www.webdeveloper.com/forum/archive/index.php/"image.png" onclick="showPick(this.href)">.<!--content-->
 
Back
Top