javascript - jQuery hide() not working in enterprise mode emulating IE8. Read description -
i have menu div , appbody div appbody div opens totally different application. outer application html/js/jquery (along java) other application opens inside appbody div has flex/flash/swf.
note: works fine until run f12 developer tools emulation document mode: edge , browser profile: enterprise. (enterprise mode emulating ie8, says console).
$("a.submenutrigger").click(function(){ $(this).parent().find("ul.submenuholder").show(); $("div#appbody").hide(); $(this).parent().hover(function(){}, function(){ $(this).parent().find("ul.submenuholder").hide(); $("div#appbody").show(); }); });
on clicking menu, submenu div shown , appbody hidden. in enterprise mode, appbody div isn't being hidden , submenu div border minutely visible if hidden behind appbody div. attaching codes, thank bearing essay.
also, note other app flex doesn't have doctype on index.jsp page. tried adding html 5 html 4.1 swf weirdly starts showing half of it.
Comments
Post a Comment