var stockmsg = '<%= product.outOfStockMsg %>';
if(stockmsg.length < 2) {
document.getElementById('stockmsg').style.display = "inline-block";
}
MPN#
SKU#
// Get variables
var prodManage = <%= product.quantity.quantityManagement %>;
var productPrice = <%= product.finalPrice %>;
var prodQty = <%= product.quantity.total %>;
if(prodManage) {
if(prodQty > 0) {
document.querySelectorAll('.dakis-product-out-of-stock')[0].innerHTML = "We currently have " + prodQty + " in stock.";
document.querySelectorAll('.dakis-product-out-of-stock')[0].style.color = "#d20024";
};
};
var alias = window.location.href;
var newAlias = alias.replace("https://widgets.dakiswebsite.com/", "");
window.Parameters.InitialPageAlias = newAlias;
<% console.log(product) %>
<% console.log(cart) %>
var stockmsg = '<%= product.outOfStockMsg %>';
if(stockmsg.length < 2) {
document.getElementById('stockmsg').style.display = "inline-block";
}
MPN#
SKU#
// Get variables
var prodManage = <%= product.quantity.quantityManagement %>;
var productPrice = <%= product.finalPrice %>;
var prodQty = <%= product.quantity.total %>;
if(prodManage) {
if(prodQty > 0) {
document.querySelectorAll('.dakis-product-out-of-stock')[0].innerHTML = "We currently have " + prodQty + " in stock.";
document.querySelectorAll('.dakis-product-out-of-stock')[0].style.color = "#d20024";
};
};
<% console.log(product) %>
<% console.log(cart) %>
Financing flexiti →
Financing affirm →
Price match for the best price!
Our Guarantee ensures we won't be beat on price.
var prodName = '<%= product.name %>';
var prodUrl = '<%= url %>';
console.log(prodName);
console.log(prodUrl);
function myTime() {
document.getElementById('prodUrl').value = prodUrl;
document.getElementById('prodName').value = prodName;
console.log('Good!');
}
PRICE MATCH
Protect Your Gear - Add Extended Warranty
Mack Diamond Warranty provides enhanced protection.

Extended Warranty – 3 year
Price: $49.99
Extended Warranty – 5 year
Price: $99.99
// Get variables
var prodPrice = <%= product.finalPrice %>;
var prodCat = "<%= product.category[1].name %>";
// Run script for filtered categories
if(prodCat == "Digital Cameras" || prodCat == "Lenses - SLR & Compact System") {
// Parse all entries
for (var x of warranty3List) {
if(x[0] > prodPrice) {
my3Warranty(x[1][0], x[1][1]);
break;
}
}
for (var x of warranty5List) {
if(x[0] > prodPrice) {
my5Warranty(x[1][0], x[1][1]);
break;
}
}
}
// Update info in widget
function my3Warranty(link, price) {
document.getElementById("warranty3Link").href = link;
document.getElementById("war3Price").innerHTML = price;
document.getElementById("warranty3Box").style.display = 'block';
document.getElementById("warranty").style.display = 'block';
}
function my5Warranty(link, price) {
document.getElementById("warranty5Link").href = link;
document.getElementById("war5Price").innerHTML = price;
document.getElementById("warranty5Box").style.display = 'block';
document.getElementById("warranty").style.display = 'block';
}
