picture click

This is a discussion on "picture click" within the JavaScript Forum section. This forum, and the thread "picture click are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Dec 6th, 2005, 05:49
New Member
Join Date: Dec 2005
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
picture click

How can i change this code to where you click on the picture it changes. instead of clicking next. Thanks!


<SCRIPT LANGUAGE="Javascript"><!--
var pictures = new Array ("image1.JPG","image2.JPG","image3.JPG");
var pictureNumber = 0;
var totalNumber = pictures.length;

function next(){
if (document.images){
if (pictureNumber < totalNumber-1) pictureNumber++
else
pictureNumber = 0
document.images.slides.src = pictures[pictureNumber]
}
}

//--></SCRIPT>
Reply With Quote

  #2 (permalink)  
Old Dec 6th, 2005, 18:04
benbacardi's Avatar
Highly Reputable Member
Join Date: Feb 2004
Location: United Kingdom
Age: 20
Posts: 611
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to benbacardi Send a message via Skype™ to benbacardi
Re: picture click

put this code inside the <img> tag of the picture:
Code: Select all
onclick="next();"
Reply With Quote
Reply

Tags
picture, click

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Help with picture upload Pss PHP Forum 2 Apr 21st, 2008 20:37
A picture gallery thewebkid Website Planning 12 Nov 19th, 2007 21:02
Add shade to a picture Fysicus Web Page Design 9 Sep 22nd, 2007 12:20
Picture Association Ross Webforumz Cafe 27 Sep 13th, 2007 18:31
Random picture survey picture help Jould Web Page Design 6 Feb 25th, 2004 14:07


All times are GMT. The time now is 00:03.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43