ya lo he solventado
sustituir las siguientes lineas jquery.maphilight
Código Javascript
:
Ver originaldocument.createStyleSheet().addRule("v\\:*", "behavior: url(#default#VML); antialias: true;");
document.namespaces.add("v", "urn:schemas-microsoft-com:vml");
por las siguientes
Código Javascript
:
Ver originaldocument.namespaces.add("v", "urn:schemas-microsoft-com:vml");
var style = document.createStyleSheet();
var shapes = ['shape','rect', 'oval', 'circ', 'fill', 'stroke', 'imagedata', 'group','textbox'];
$.each(shapes,
function()
{
style.addRule('v\\:' + this, "behavior: url(#default#VML); antialias:true");
}
);