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
Post a Comment