-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
63 lines (58 loc) · 4.9 KB
/
example.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!-- START Alaska Seafood 2013 Cartridge Example -->
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
var myIDElement = document.getElementById('sponsorCtr1');
var loaded = false;
// Set to escaped markup. I use http://accessify.com/tools-and-wizards/developer-tools/html-javascript-convertor/ to save time.
var syncedContent = "";
syncedContent += "<style>#whats-cooking div.twin{float:left;margin:0 7px 14px;width:250px;_width:237px;}</style>";
syncedContent += "<div id=\"whats-cooking\" class=\"sponsor\">";
syncedContent += " <div class=\"hd\"><\/div>";
syncedContent += " <div class=\"bd\">";
syncedContent += " <p><small>Sponsor Recipes<\/small><\/p>";
syncedContent += " <div class=\"panel clrfix\">";
syncedContent += " <div class=\"twin thumb\">";
syncedContent += " <a href=\"http:\/\/adsremote.scrippsnetworks.com\/event.ng\/Type=click&FlightID=&AdID=&TargetID=&Values=2088974&Redirect=http:%2f%2fwww.foodnetwork.com\/recipes\/alaska-sockeye-salmon-with-herbs-and-garlic-recipe\/index.html\">";
syncedContent += " <img src=\"http:\/\/img.foodnetwork.com\/FOOD\/2013\/04\/29\/RX-ALASKASEAFOODGRILLINGRSI_Sockeye-Salmon-Herb-Garlic_s4x3_med.jpg\" width=\"120\" height=\"90\" alt=\"Alaska Sockeye Salmon with Herbs & Garlic\">";
syncedContent += " <\/a>";
syncedContent += " <p><a href=\"http:\/\/adsremote.scrippsnetworks.com\/event.ng\/Type=click&FlightID=&AdID=&TargetID=&Values=2088974&Redirect=http:%2f%2fwww.foodnetwork.com\/recipes\/alaska-sockeye-salmon-with-herbs-and-garlic-recipe\/index.html\">Alaska Sockeye Salmon with Herbs & Garlic<\/a><\/p>";
syncedContent += " <cite><a href=\"http:\/\/adsremote.scrippsnetworks.com\/event.ng\/Type=click&FlightID=&AdID=&TargetID=&Values=2088973&Redirect=http:%2f%2fwww.wildalaskaflavor.com\/\" title=\"Courtesy of Alaska Seafood Marketing Institute\" target=\"_blank\">Courtesy of Alaska Seafood Marketing Institute<\/a><\/cite>";
syncedContent += " <\/div>";
syncedContent += " <div class=\"twin list recipe_list_wrap\">";
syncedContent += " <h6>More recipes from Alaska Seafood Marketing Institute<\/h6>";
syncedContent += " <ul>";
syncedContent += " <li><a href=\"http:\/\/adsremote.scrippsnetworks.com\/event.ng\/Type=click&FlightID=&AdID=&TargetID=&Values=2088975&Redirect=http:%2f%2fwww.foodnetwork.com\/recipes\/planked-alaska-salmon-with-asian-glaze-recipe\/index.html\">Planked Alaska Salmon with Asian Glaze<\/a><\/li>";
syncedContent += " <li><a href=\"http:\/\/adsremote.scrippsnetworks.com\/event.ng\/Type=click&FlightID=&AdID=&TargetID=&Values=2088976&Redirect=http:%2f%2fwww.foodnetwork.com\/recipes\/black-thai-grilled-alaska-cod-tacos-with-green-papaya-slaw-and-sambal-crema-recipe\/index.html\">Black Thai Grilled Alaska Cod Tacos<\/a><\/li>";
syncedContent += " <li><a href=\"http:\/\/adsremote.scrippsnetworks.com\/event.ng\/Type=click&FlightID=&AdID=&TargetID=&Values=2088977&Redirect=http:%2f%2fwww.foodnetwork.com\/recipes\/border-grill-grilled-alaska-cod-tacos-recipe\/index.html\">Border Grill Grilled Alaska Cod Tacos<\/a><\/li>";
syncedContent += " <li><a href=\"http:\/\/adsremote.scrippsnetworks.com\/event.ng\/Type=click&FlightID=&AdID=&TargetID=&Values=2088978&Redirect=http:%2f%2fwww.foodnetwork.com\/recipes\/charred-alaska-halibut-tacos-with-cilantro-pesto-recipe\/index.html\">Alaska Halibut Tacos with Cilantro Pesto<\/a><\/li>";
syncedContent += " <\/ul>";
syncedContent += " <\/div>";
syncedContent += " <\/div>";
syncedContent += " <\/div>";
syncedContent += " <div class=\"ft\"><\/div>";
syncedContent += " <div class=\"tableCell\">";
syncedContent += " <!-- Impression Tag -->";
syncedContent += " <img id=\"viewTracker\" src=\"http:\/\/adsremote.scrippsnetworks.com\/image.ng\/site=FOOD&adtype=TRACKING&TRACKING=FOOD_13MAY07_ALASKA_GRILLING_CARTRIDGE_1X1&adsize=1x1&PagePos=1\" width=\"1\" height=\"1\" >";
syncedContent += " <\/div>";
syncedContent += "<\/div>";
// Write to page
if (myIDElement && !loaded) {
$('#sponsorCtr1').html(syncedContent);
$('#sponsorCtr1').show();
loaded = true;
} else {
// Missing sponsorCtr1.
// Loop through possible page hooks array. Insert ad after first match.
// Added 11_12_2013 - Fixes cartidges on tentpole page types missing sponsorCtr1
var pageHooks = ['.graphic-lead', '.spotlight'];
for (var i = pageHooks.length - 1; i >= 0; i--) {
if( $('' + pageHooks[i]) && !loaded ){
// Hook found
$('' + pageHooks[i]).after("<div id='sponsorCtr1' style='display:block;'>" + syncedContent + '<div>');
loaded = true;
}
}
} // End write to page block
});
</script>
<!-- END Alaska Seafood 2013 Cartridge Example -->