I have many div tags.
I am trying to display only one tag at a time for 10 seconds.
That is, when div1 is being displayed, div2,div3..divn must be hidden, after 10 seconds div2 has to be displayed for 10 seconds and other div tags has to be hidden and so on.
Its a kind of cyclic manner.
Kindly help.
Check out the sample html here:
<html>
<head>
......
.......
</head>
<body>
<div id="div1">
........
......
</div>
<div id="div2">
........
......
</div>
..
..
<div id="divn">
........
......
</div>
</body>
</html>
Regards,
abk
This should work: http://jsfiddle.net/Z5uMV/