-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiq.html
36 lines (32 loc) · 1019 Bytes
/
siq.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>loading from other file</h1>
<script>
function initSalesIq() {
window.$zoho = {};
}
function initialize() {
initSalesIq();
window.$zoho=window.$zoho || {};
window.$zoho.salesiq = window.$zoho.salesiq || {widgetcode: "e0a717548723850adff37071a4043e562bb6fb59dac999a51986f6f6acb92e2f", values:{},ready:function(){}};
var d=document;
var s=d.createElement("script");
s.type="text/javascript";
s.id="zsiqscript";
s.defer=true;
s.async=true;
s.src="https://salesiq.zoho.com/widget";
var t=d.getElementsByTagName("script")[0];
t.parentNode.insertBefore(s,t);
}
window.addEventListener("load", initialize, !1);
</script>
</body>
</html>