#1 (permalink)  
Old 11-23-09, 05:56 AM
hemi hemi is offline
Newbie Coder
 
Join Date: Aug 2009
Posts: 62
Thanks: 3
Thanked 0 Times in 0 Posts
div id

hi

is there a way to get randomly div id inorder.

wht i mean exactly is

suppose there r 3 div tags with id's 1,2,3 when i first click a button the first div id should be called in the javascript function and whn i click the button next time it should call second div id and this should continue according to id is this possible if it is possilble plz help me out
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #2 (permalink)  
Old 11-23-09, 06:47 AM
wirehopper's Avatar
wirehopper wirehopper is offline
Community Liaison
 
Join Date: Feb 2006
Posts: 2,336
Thanks: 17
Thanked 92 Times in 90 Posts
Not tested.

HTML Code:
<head>
<script type="text/javascript">
var aDivs=array('div1','div2','div3');
var lDivs=aDivs.length-1;
var iDiv=0;
function cycle()
{
iDiv++;
if (iDiv > lDivs) iDiv=0;
/* iDiv will contain an index into the array of div ids (aDiv) */
}
</script>
</head>
<body>
<div id="div1">Div 1</div><div id="div2">Div 2</div><div id="div3">Div 3</div><br />
<button onclick="cycle()">Cycle</button>
</body>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #3 (permalink)  
Old 11-24-09, 01:12 AM
hemi hemi is offline
Newbie Coder
 
Join Date: Aug 2009
Posts: 62
Thanks: 3
Thanked 0 Times in 0 Posts
i did not get any output from tht code
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Space Above Form xavier039 CSS 1 07-13-09 10:52 PM
div css theighost CSS 11 09-14-08 02:30 AM
[SOLVED] delay on html element properties? UnrealEd JavaScript 5 05-05-08 03:23 AM
[SOLVED] Change content in a DIV with links in another DIV s1yfa JavaScript 3 05-04-08 04:10 AM
Can't Understand java script maverickminds JavaScript 1 07-16-06 01:23 PM


All times are GMT -5. The time now is 06:18 AM.
vBulletin® Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.