en.javascript.info/4-ajax/12-ajax-iframe/date-comet.view/index.html
2015-02-27 13:21:58 +03:00

27 lines
347 B
HTML

<!DOCTYPE html>
<html>
<body>
<script src="iframeComet.js"></script>
<button onclick="go()">IframeComet.open("comet");</button>
<div id="showElem"></div>
<script>
IframeComet.onMessage = IframeComet.onError = show;
function show(msg) {
showElem.innerHTML = msg;
}
function go() {
IframeComet.open("comet");
}
</script>
</body>
</html>