[jQuery] Basic Selector expression only work on Chrome, no other browsers
Hi,
I have the follow simple html code:
<div style="FILTER: progid:DXImageTransform.Microsoft.Gradient
(GradientType=1, StartColorStr=#FFFFFFFF, EndColorStr=#7E003366);
WIDTH: 794px; HEIGHT: 685px">
Hello
</div>
And I try to use follow code to get the div element:
alert($('div[style*=FILTER]').length);
In Google Chorme, it return 1, but on other browsers IE8, FF3, Opera9,
all return 0.
Any suggestion?
Cheers,