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

apache - Remove .php and add trailing slash in url using htaccess not loading css -

inno setup - TLabel or TNewStaticText - change .Font.Style on Focus like Cursor changes with .Cursor -