-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathie-blocker.en.js
57 lines (51 loc) · 2.46 KB
/
ie-blocker.en.js
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
(function () {
var ibContainer;
var html;
ibContainer = document.createElement('div');
ibContainer.setAttribute('id', 'ib-container');
html = "";
html += "<div class=\"ib-modal\">";
html += " <div class=\"ib-header\">";
html += " <h1>You are using an outdated browser.<\/h1>";
html += " <p>To display the website correctly and protect your information,";
html += " <br><strong>please use one of these up-to-date, free and excellent browsers.<\/strong>";
html += " <\/p>";
html += " <\/div>";
html += " <ul class=\"ib-browsers\">";
html += " <li>";
html += " <a href=\"http:\/\/www.google.com\/chrome\/browser\/desktop\/index.html\">";
html += " <div class=\"ib-browser-name\">Chrome<\/div>";
html += " <div class=\"ib-browser-description\">Speed, Simplicity, Security - Google.<\/div>";
html += " <\/a>";
html += " <\/li>";
html += " <li>";
html += " <a href=\"http:\/\/www.firefox.com\">";
html += " <div class=\"ib-browser-name\">Firefox<\/div>";
html += " <div class=\"ib-browser-description\">The Open Source browser.<\/div>";
html += " <\/a>";
html += " <\/li>";
html += " <li>";
html += " <a href=\"https:\/\/www.apple.com\/safari\">";
html += " <div class=\"ib-browser-name\">Safari<\/div>";
html += " <div class=\"ib-browser-description\">Browser designed by Apple Inc.<\/div>";
html += " <\/a>";
html += " <\/li>";
html += " <li>";
html += " <a href=\"http:\/\/www.opera.com\">";
html += " <div class=\"ib-browser-name\">Opera<\/div>";
html += " <div class=\"ib-browser-description\">Fastest and light browser.<\/div>";
html += " <\/a>";
html += " <\/li>";
html += " <\/ul>";
html += " <div class=\"ib-footer\">";
html += " <a class=\"ib-try\" href=\"http:\/\/www.google.com\/chrome\/browser\/desktop\/index.html\">Try Chrome now!<\/a>";
html += " <\/div>";
html += "<\/div>";
html += "<div class=\"ib-mask\"><\/div>";
html += "";
ibContainer.innerHTML = html;
window.onload = function () {
document.body.appendChild(ibContainer);
ibContainer.style.display = 'block';
};
})();