File: js/local_loader.js

Recommend this page to a friend!
  Classes of Martin Latter   JavaScript Monitor URL Changes   js/local_loader.js   Download  
File: js/local_loader.js
Role: Example script
Content type: text/plain
Description: Example script
Class: JavaScript Monitor URL Changes
Display the status of accessing a URL in a page
Author: By
Last change: Update of js/local_loader.js
Date: 2 years ago
Size: 922 bytes
 

Contents

Class file image Download
/** * Set-up onload event handler for traffic light monitoring local URLs. */ window.addEventListener('load', function() { "use strict"; var sLocalURL = "http://localhost/URL-Monitor/status/index.php", iCheckInterval = 2000; // 2 secs /* normal */ var oTrafficLight1 = new TrafficLight(); var sTL1 = oTrafficLight1.create("traffic-light-1"); oTrafficLight1.monitor(sLocalURL + "?status=200", iCheckInterval, sTL1); /* continuous errors */ var oTrafficLight2 = new TrafficLight(); var sTL2 = oTrafficLight2.create("traffic-light-2"); oTrafficLight2.monitor(sLocalURL + "?status=400", iCheckInterval, sTL2); /* single error in time period */ var oTrafficLight3 = new TrafficLight(); var sTL3 = oTrafficLight3.create("traffic-light-3"); oTrafficLight3.monitor(sLocalURL + "?status=200&create_single_error", iCheckInterval, sTL3); }, false);