I am to know nothing about any code, and my site was build by an ASP source code, the sample client code is given by LakeBTC, but it doesn't work in my site, How could I modify it? Or will it helpful for me to replace a wordpress website?
https://www.lakebtc.com/s/api?locale=en<html>
<head>
<script>
function init() {
var conn = new WebSocketLakeBTC('www.lakebtc.com/websocket');
var channel = conn.subscribe('orderbook_USD');
channel.bind('update', function(t){
$('#debug').append(JSON.stringify(t));
});
};
</script>
</head>
<body onload="init();">
<h1>WebSocketLakeBTC Test</h1>
<div id="debug"></div>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="/WebSocketLakeBTC.js" type="text/javascript"></script>
</body>
</html>