internet explorer - Javascript alerts not working for browser MSIE on Xbox One -


this 1 may simple. javascript alerts not working on msie xbox one. i've tested them on pc, osx, nokia phone, iphone.

javascript works i'm using socket.io.

here code:

function changegamertag() {     if (socket.socket.connected) {         socket.emit('partyup add user', prompt("enter gamertag: ") + '['+ masterrace + ']');     } else {       alert('party server offline.');     } } 

you try library jquery ui: https://jqueryui.com/dialog/. see example under 'view source' libraries & css include. use show dialog:

$('<div title="oops"><p>party server offline.</p></div>').dialog(); 

Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

objective c - Ownership modifiers with manual reference counting -

python 3.x - Mapping specific letters onto a list of words -