Forum Moderators: not2easy
Thank you very much SuzyUK and encyclo for giving such valuable insight regarding CSS support through doctypes.
Now the only thing that is not working right is Visual Filters in IE. If I add a static style then it is working perfectly fine but when I apply a dynamic style like in the following example then it will not work.
obj.innerHTML = "<span id='test' style='filter: blur(add=0,direction=90,strength="+BlurStrength+");'>"+BlurMsg+"<\/span>";
BlurStrength and BlurMsg are dynamically generated variables.
Is there anything I can do to make it work with the full version of doctype?
Milan
The problem was IE's concept of hasLayout that I solved by adding "display: inline-block;".
obj.innerHTML = "<span id='test' style='display: inline-block; filter: blur(add=0,direction=90,strength="+BlurStrength+");'>"+BlurMsg+"<\/span>";
I hope this will help someone out there.
Milan