My goal is to adjust the z-index of a table cell using JavaScript to bring it to the top layer. I've discovered that the z-index property only works when the CSS 'position' is set to something other than normal. The issue I'm facing is that setting 'position: relative' and z-index for does not have the desired effect in the Opera browser.
Therefore, I am trying to find a way to determine whether the element has been brought to the front without relying on the z-index property. Is there a DOM attribute or perhaps a method to check for the browser's compatibility with position:relative?
Thank you