On 04/06/07, Trevor Boult <[EMAIL PROTECTED]> wrote: > I seem to have made a school boy error a while ago and instead of using > class's to define I used id's, thus having the effect of multiple id's with > the same name in the same page. I can correct but wanted to know what damage > multiple id's can do, regarding SEO etc.
It will hurt in three ways, all of them which may or may not apply to your case: - The document is not valid, for whatever having it be valid is worth to you. - Fragment identifiers will no longer work as they should. - Scripting with getElementById or the any HTMLCollection will or at least may break, depending a bit on your script. -- David "liorean" Andersson ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
