-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.js
More file actions
20 lines (15 loc) · 702 Bytes
/
Copy pathprofile.js
File metadata and controls
20 lines (15 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var PATH_CSSFile = "https://bobbinz.github.io/TelehackProfile/smpte.css";
var objLinkElement = document.createElement("link");
objLinkElement.setAttribute("rel", "stylesheet");
objLinkElement.setAttribute("type", "text/css");
objLinkElement.setAttribute("href", PATH_CSSFile);
document.getElementsByTagName("head")[0].appendChild(objLinkElement);
var objElement;
objElement = document.createElement('div');
objElement.id = "static";
objElement.className = 'static';
document.getElementsByTagName("body")[0].appendChild(objElement);
objElement = document.createElement('div');
objElement.id = "scan";
objElement.className = 'scan';
document.getElementsByTagName("body")[0].appendChild(objElement);