Java Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesJava Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old November 19th, 2012, 08:33 AM
Lordremcok Lordremcok is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2012
Posts: 2 Lordremcok User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 11 m 8 sec
Reputation Power: 0
Problem with duplicate icons

I have a code

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <title>Image Change Demo</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
 <script type="text/javascript">
 function changeIt(objName)
 {
 //The image object accessed through its id we mentioned in the DIV block which is going to be visible currently
 var obj = document.getElementById(objName);

 //An array that hold the IDs of images that we mentioned in their DIV blocks
 var objId = new Array();

 //Storing the image IDs into the array starts here
 objId[0] = "image1";
 objId[1] = "image2";
 objId[2] = "image3";
 objId[3] = "image4";
 objId[4] = "image5";
 //Storing the image IDs into the array ends here

 //A counter variable going to use for iteration
 var i;

 //A variable that can hold all the other object references other than the object which is going to be visible
 var tempObj;

 //The following loop does the display of a single image based on its ID. The image whose ID we passed into this function will be the
 //only image that is displayed rest of the images will be hidden based on their IDs and that part has been handled by the else part
 //of the if statement within this loop.
 for(i=0;i<objId.length;i++)
 {
 if(objName == objId[i])
 {
 obj.style.display = "block";
 }
 else
 {
 tempObj = document.getElementById(objId[i]);
 tempObj.style.display = "none"; 
}
 }
 return; 
}
 </script>
 </head>
 
<body>
 <div id="image1">
 <img src="1.jpg" border="0" alt="one" />
 </div>
 
<div id="image2" style="display:none">
 <img src="2.jpg" border="0" alt="two" />
 </div>
 
<div id="image3" style="display:none">
 <img src="3.jpg" border="0" alt="three" />
 </div>
 
<div id="image4" style="display:none">
 <img src="4.jpg" border="0" alt="four" />
 </div>
 
<div id="image5" style="display:none">
 <img src="5.jpg" border="0" alt="five" />
 </div>
 <br><br>
 <a id="one" href="#" onclick="changeIt('image1');">one</a>
 <a id="two" href="#" onclick="changeIt('image2');">two</a>
 <a id="three" href="#" onclick="changeIt('image3');">three</a>
 <a id="four" href="#" onclick="changeIt('image4');">four</a>
 <a id="five" href="#" onclick="changeIt('image5');">five</a>
 </body>
 </html>

My problem is - I have an icon, and after clicking on it i want it to return two pictures in two different areas on the screen ( same pictures but double )
Is it possible ?
how do i do it

Reply With Quote
  #2  
Old November 19th, 2012, 08:35 AM
bullet's Avatar
bullet bullet is offline
Java Junkie
Dev Shed Expert (3500 - 3999 posts)
 
Join Date: Jan 2004
Location: Mobile, Alabama
Posts: 3,828 bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level)bullet User rank is General 4th Grade (Above 100000 Reputation Level) 
Time spent in forums: 1 Month 1 Week 6 Days 11 h 21 m 19 sec
Reputation Power: 1248
Send a message via ICQ to bullet Send a message via AIM to bullet Send a message via MSN to bullet
You need to ask this in the Javascript forum.

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesJava Help > Problem with duplicate icons

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap