I have an object type tag on my page that displays a PDF file. Everything is functioning correctly, but in Internet Explorer, my sub-menu is being hidden behind the object tag.
var objTag = $('<object></object>')
.attr({ data: sourceURL + '#nameddest=self&page=1&view=FitV'
|| '', type: mimeType || '' })
.css({ width: '100%', height: '100%', zindex:'1' });
Please pay attention to the section highlighted in red above.
I've attempted various solutions. Please refrain from suggesting the use of z-index.