Hi all, I'm having problems trying to explain this, but I have a page with text driven from a DB. I'm using stylesheets to create a box around the text to make it look like a button. You have to click the "button" to bring the description up on the other side of the screen. I think the resultset is giving me problems with my javascript displaying the description automatically as you scrollover the buttons. Here's what I have.
What I want to have it do is as you scroll over each button on the left, the description for it displays as well on the fly. The description text is all pulled from the DB too. I apologize if this is more of a javascript problem, I'm just not sure why you have to click the Item to display the description. I was wondering if this is because of the resultset? Would java.awt handle this? Thanks.
Code:
This is all on one page.
|---------| |------------------|
| Item 1 | --> | Item 1 Descript |
|---------| |------------------|
|---------| |------------------|
| Item 2 | --> | Item 2 Descript |
|---------| |------------------|
|---------| |------------------|
| Item 3 | --> | Item 3 Descript |
|---------| |------------------|
What I want to have it do is as you scroll over each button on the left, the description for it displays as well on the fly. The description text is all pulled from the DB too. I apologize if this is more of a javascript problem, I'm just not sure why you have to click the Item to display the description. I was wondering if this is because of the resultset? Would java.awt handle this? Thanks.