Quote:
Originally Posted by Rutlandcycling
We would like to do that however doesn't this affect our SEO and google picking up links down the left hand side?
|
Not really.
Google and other searchbots will read whatever HTML is on
the page BEFORE JavaScript kicks in.
It all depends HOW the JS is implemented.
The most logical way to go about it would
be to set the CSS property of all the sub-links to "display:none",
then use lets say JQuery to add an event handler for each of
the main menu buttons. The handler would say, "if this button is
clicked, toggle all child element display attributes to "display:visible".
Last edited by TWD; 08-12-2009 at 07:23 AM..
|