0

I've added a sortable spry table on my website. It works great everywhere except Internet Explorer. And I'm really struggling because no one can't tell me how to resolve the issue. In the page, you can see the table right at the bottom.

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129

1 Answers1

0

You're first defining the CSS width like this, and then dynamically replacing it with the real values. However, this is invalid CSS which, apparently, IE not only ignores but discards altogether - the entire style attribute is removed from the DOM.

The "style" attribute is missing altogether

user2428118
  • 7,935
  • 4
  • 45
  • 72
  • Thank you for your comment, the style for "results_bar" is right at the top of the page: .results_bar { background-image:url(../images/10.png); color:transparent; height:20px; } " For some reason this particular div didn't want to take the style from style.css that is why I had to put in in the So I don't quite get what should I do with my dynamic values in CSS width? – Antons Voitov Jul 05 '12 at 09:04