I am working on some browser neutral issue and I see code is in window.open()
for new window, it works in IE-11(but not modal pop-up) and not in any other browsers such as Edge, Safari, Chrome.
the currently the window.open() is not of Modal type so is there any way I can change this window to modal and could work in all above mentioned browsers in a easy way ?
here is the code
function ShowAbbreviationDefinition_onclick()
{
var windowOptions = "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,height=400,width=400,left=300,top=150"
window.open("../UserControls/Somepage.aspx", "", windowOptions);
}
Thanks.