• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Personalized Drop Down - With Images

I need to find a script for a personalized drop down. I need it to have a list of items in a dropdown. When one is selected, I need it to change an image and a link on the page. The dropdown must also display images. I think need to write the selected value into a cookie which I can read later and prepopulate the image and link on the page. Is this possible with javascript/asp?
 
you cannot use a normal 'dropdown' (select) to display images, you'd have to build a custom one. More trouble than it's worth.
Without the requirement to display images in the dropdown, doing the other stuff is easy.

Use onchange and .selectedIndex to get the value the item the person selected and then change the image/link on the page.
 
Back
Top