Modal windows aren't responding in Microsoft Edge (Spartan)

2.5k views Asked by At

We are testing our site in Microsoft Edge (Spartan) and in our site we are extensively using jQuery modal windows. When we open those jQuery modal windows in Spartan browser, the modal window does open, but the modal window is not responding. I mean, I am not able to do any action in that modal window such as click any button or enter any text etc. But the same functionality is working fine in IE 11 in Windows 10.

1

There are 1 answers

0
Rami Sarieddine On

You can debug it Microsoft Edge using the developer tools F12. It is working now. check out this JSFiddle I created that shows a modal window in action. http://jsfiddle.net/dj8kobvy/

<div id="dialog" title="Basic dialog">

  <p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>

</div>

$(function() { $( "#dialog" ).dialog(); });