tinoymalayil 0 Report post Posted July 20, 2012 (edited) Hi all,Why Internet Explorer doesnot support SVG(Scalable Vector Graphics). In HTML 5 , the browsers like forefox supports SVG. This SVG helps to design the gradient images in the html pages. This helps to make good GUI. SVG helps to load the image faster. Please suggest any other alternatives to SVG in Internet Explorer to implement the gradient color?Regards,Tinoy Edited July 20, 2012 by tinoymalayil (see edit history) Share this post Link to post Share on other sites
Quatrux 4 Report post Posted July 20, 2012 Internet Explorer doesn't support SVG, but IE9 already supports it, so you need to worry just about earlier versions of IE.IE can use plugins like Adobe SVG plugin, but that's probably a bit much to ask for your end-users to install every time, besides they won't see the content.If you don't mind a little extra work, IE does support VML which is "kind of" like SVG, just IE-only.Here is the link: https://msdn.microsoft.com/en-us/library/bb250524(VS.85).aspxYou can accomplish things with IE only conditional formating, to incldue different things for IE, but I never used WML. Several times, I needed to work with SVG, I just used PNG for Internet Explorer 7,8...Just did a google search and found a post with these links:https://code.google.com/archive/p/svgweb (SVG/Flash)http://forums.xisto.com/no_longer_exists/ (SVG/VML)http://www.amplesdk.com/ (SVG/VML)http://mbostock.github.io/protovis/ (SVG/VML) (can also be used together with SVGWeb)http://forums.xisto.com/no_longer_exists/ (SVG/VML)Some of them are really good to implement and make SVG "work" on IE and older versions of Firefox which didn't support SVG yet. Share this post Link to post Share on other sites