-
Notifications
You must be signed in to change notification settings - Fork 2
Web Sockets
Arturo Vasquez edited this page Apr 18, 2021
·
2 revisions
let wsapi=genrl.ws; wsapi.set('socket1',"ws://127.0.0.1:5001"); g("#btnwebsock").click(function(){
genrl.log("Mensaje a enviar " + g("#mensaje").val());
wsapi.reply('socket1',g("#mensaje").val(),function(){
g("#responsechat").append(g("#mensaje").val());
});
});wsapi.receive('socket1',function(data){
g("#responsechat").append(data);
});Arturo Vásquez 2022
Search into the pages for more info