If you use Java, you must create a servlet decoder. Example: https://gist.github.com/sjpuas/6217394 This works in all versions of IE
Using jquery replace url images like this
if ($.browser.msie && $.browser.version == "6.0") { $("img[src*=base64]").each(function (i, img) { var base64 = $(img).attr("src").split("base64,")[1]; var encoded = encodeURIComponent(base64); $(img).attr("src", "/myApp/base64Servlet?base64=" + encoded); }); }
source share