I am currently tackling some challenges with IE7 compatibility in a Rails application that I am developing. It appears that CSS styles implemented from a stylesheet applied with a conditional comment are not being rendered properly when using HAML like this:
/[if IE 7]
= stylesheet_link_tag '/ie7.css'
Although the styles defined in the 'ie7.css' stylesheet work as expected, they do not apply to content loaded via ajax. We are utilizing $.ajax to load HTML content into an existing div. I have experimented with ie8.js and html5shiv.js to address this issue, but unfortunately, it has not resolved the problem.
Your assistance on this matter would be greatly valued. Thank you!