Forum Moderators: open
So either it wasnt javascript or it was hidden somehow?
I'm trying to figure out how to tell our engineers to do a dropdown menu that will be spiderable by search engines basically.
Any pointers?
Thx :)
I'm trying to figure out how to tell our engineers to do a dropdown menu that will be spiderable by search engines...
There is no reason why a regular JavaScript dropdown shouldn't be spiderable by search engines... having unordered lists of links which is "regular code on the page" and using 'unobtrusive' JavaScript to assign events etc.
Although it is also possible to create CSS dropdown menus, often with a bit of JavaScript to help IE6 and below (because IE6 only supports the pseudo :hover class on <a> tags) - but I have also seen dropdown menus built solely with CSS (no JS at all), that work cross-browser.
(Try googling for "css dropdown" or "css drop down".)