Home > Software engineering >  JavaScript function works only in Internet Explorer (in ASP.NET WebForms)
JavaScript function works only in Internet Explorer (in ASP.NET WebForms)

Time:09-22

in aspx page (WebForms) I have a JavaScript function that works only in Internet Explorer and not in Edge/Chrome.

This one:

function ChoosePharmacy()
{ 
    var result = window.showModalDialog('search_pharmacy.aspx', window,"dialogWidth:800px;dialogHeight:600px;scroll: no;") 
    
    if (result != null)
            document.getElementById('hIdPharmacy').value = result;
}

This should open a pop-up window (with an aspx page inside), but because is an old legacy application, works only in Internet Explore, and now that users have move to Edge, has stop working.

Do someone has idea why?

Thanks a lot in advance.

Luis

CodePudding user response:

From your description, I understand that you would like to know why your JS code is not working with modern browsers like Chrome or Edge.

If we refer to the document for enter image description here

As suggested by Elder, enter image description here

  • Related