I have a div and on mouseover I show an ice:menuPop
with this function:
function fireContextMenu(element, event) {
if (element.getAttribute('oncontextmenu')) {
element.oncontextmenu = new Function ('event', element.getAttribute('oncontextmenu'));
element.oncontextmenu(event);
}
}
calling it like:
onmouseover="fireContextMenu(this, event);"
On Chrome is working perfect but on IE it does not appears. I suppose it's something wrong in the js or IE8 does not support hover of div?