JavaScript Error Resolved : Object doesn't support this property or method : document.all.tags

Our team finally tracked down a troublesome JavaScript error in Social Bookmarking today. This was an odd bug, which will probably trip some other people up in the future.

The error below...

...was thrown on referencing the following JS object: document.all.tags

We found the problem to be an HTML div element on the page that had it's ID="tags". For some reason, this element ID caused the document.all.tags collection to be null. Good news is, the problem was easy to fix. We simply gave the problem Div a different ID, and the error is gone. Many thanks to our test team for tracking this one down.

For people using the Social Bookmarking app right now and experiencing this problem, know that a solution is on the way. It is in Test right now, and hopefully in Production soon. For future developers who try to ID an element "tags", hope this helps! :)