-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcharter-media.html
More file actions
34 lines (32 loc) · 1.02 KB
/
charter-media.html
File metadata and controls
34 lines (32 loc) · 1.02 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Charter Media Pixel Test</title>
<meta name="robots" content="noindex, nofollow" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="js/jquery-masked-input.js"></script>
</head>
<body>
<!-- Privacy policy at http://tag.brandcdn.com/privacy -->
<script>
$(window).load(function() {
(function() {
// redefine document write
var oldDocumentWrite = window.document.write;
window.document.write = (function(html) {
try {
$('body').append(html);
} catch(ex) {}
});
// get script and then set document.write back to initial state
$.getScript('https://tag.brandcdn.com/autoscript/Money_Mutual_Prizm.js')
.done(function(script, textStatus) {
window.document.write = oldDocumentWrite;
});
})();
});
</script>
</body>
</html>