Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is using a select list for navigation SEO Friendly?

I really don't like the use of select/option elements for links:

enter image description here

But they've found their way into the designers portfolio as an option and try as I might to dissuade them from using them, I know I'm going to lose the battle without the power Google and "it's bad for SEO".

I searched all over the net, and can find nothing specific to support or debunk my thoughts.

The select list that I write will end up having full accessibility with a back end script to follow the link, but does anyone know for sure if search engines will follow or ignore the URLs?

<form action="/redirect-script" method="post">
  <label for="url-selection">Redirect to: </label>
  <select id="url-selection" name="url_redirect">
    <option value="http://example.com/" >Example.COM</option>
    <option value="http://example.net/" >Example.NET</option>
    <option value="http://example.org/" >Example.ORG</option>
  </select>
  <input type="submit" value="Go to URL" />
</form>
like image 890
Steve Perks Avatar asked Jun 18 '10 17:06

Steve Perks


2 Answers

Well, the super search engines like Google, Yahoo, Bing and such might be able to figure it out eventually. However...

Search engines don't like to follow POST requests as they often do very special things like redirects, handle authentication (which search engines can't do), etc... So either they ignore them completely or maybe after quite a while, they'll grab a couple (remember, it would also have to try each combination of all possible fields in the FORM itself.

Most certainly anchor tags are the way to go. Also, for your designers, which should be worrying about user usability. SELECTs are terrible as the user can not see all the places he/she can go on your site, which means they will miss several possibly important links to your site. Also, users are looking for the famous, well known blue underline text when they want to navigate somewhere. Using selects makes the user look at other, unknown things.

like image 172
Moncader Avatar answered Sep 18 '22 23:09

Moncader


Its probably not SEO Friendly

If this is a list of Sponsored links:

Since these are not actual links and redirection is handled either server side scripting or client side scripting then Google will not give credit to the site you are redirecting to.

Can I point out this: Why have a dropdown list of links? Sure it may save some space but it will require the user to click twice once to select and then again to click the Go To Link Page. Seems to me that from a usability standpoint you may want to consider a simple set of <a> tags.

like image 27
John Hartsock Avatar answered Sep 18 '22 23:09

John Hartsock