mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
12 lines
417 B
JavaScript
Executable File
12 lines
417 B
JavaScript
Executable File
function WebSocketTest()
|
|
{
|
|
if ("WebSocket" in window)
|
|
{
|
|
alert("WebSocket supported here! :)\r\n\r\nBrowser: " + navigator.appName + " " + navigator.appVersion + "\r\n\r\n(based on Google sample code)");
|
|
}
|
|
else
|
|
{
|
|
// Browser doesn't support WebSocket
|
|
alert("WebSocket NOT supported here! :(\r\n\r\nBrowser: " + navigator.appName + " " + navigator.appVersion + "\r\n\r\n(based on Google sample code)");
|
|
}
|
|
} |