Forum Moderators: open
I would like to create a tabbed banner, something like chitika is offering. Maybe someone have seen any tutorials about it or have made anything like that in the past? I have googled for it, but I'm not getting anything like that. Maybe I'm using bad keywords, I don't know. Any help is appreciated!
Thanks
The high level view of this is for each tab you have a div that is position:absolute and display:none.
The active tab is display:block.
the row of tabs is styled with css and has a link:hover state that makes it look different. At the same time;
onMouseOver="
getElementByID('the div id').style.display='block';
getElementByID('the other divid').style.display='none';
getElementByID('the other,other div id').style.display='none';"
All of this can be packaged a little cleaner with some slick js functions and css but that is the trick to it.