javascriptmodernizrshowmodaldialog

How to check window.showModalDialog availability?


Javascript method window.showModalDialog is deprecated and not working in Chrome browser anymore. Soon it will stop working in Fire Fox. I want to replace it with window.open however only if browser do not support showModalDialog.

How to detect if browser still support this functionality? Is it possible to do by modernizr library and how?


Solution

  • Use a condition.

    if(window.showModalDialog) console.log("derp");
    else console.log("herp");