Hi! My question is: What is more advantagous way how to create a list. EITHER Show/hide div JS (example: http://www.javascriptjunkie.com/examples/9-show-hide-div.htm ) OR subdivisions for each new page (I click on subdivison-> it redirects me to page) my example: www.555.com there are subdivisions like: dog cat ball ... when I click on cat-> www.555.com/cat will open Whats better for SEO-more keywords in google/ better space for ads...( ads within the text...) Are there any advs or disadvantages when using SHOW/DIV JS? THANKS
Of the two, I prefer the show/hide. Which is more advantageous? Neither, it's a matter of taste. I also sometimes rewrite a div's contents on the fly, so the div is always visible, but what's in it changes.
Redirecting to another page is inefficient and slower. Show/hide is client-side so, unless the user has a very slow computer, it's almost instantaneous. You can also do tabs, making each tab 100% of the screen, so it looks like redirection, but it's still being done in the browser. Which is better for SEO? Neither one. All on one page (which is what switching looks like) or on separate pages all on one site looks about the same to SEO.