I was asked to go through our product pages and fix validation issues I could find using the w3c validator for an e-commerce company I work at. I have validated almost everything but have been having issues with some javascript. I am more of a back-end developer so javascript is not my forte. Anyways here is the original code that was causing issues:
----------------------------------------------------------------------------
<script type="text/javascript">
var norm = {price};
var special = "{special_price}";
var list = {list_price};
var end = "{special_to_date}";
var endComp = parse_date(end).getTime();
var start = "{special_from_date}";
var startComp = parse_date(start).getTime();
var now = new Date().getTime();
var specialTrue = '<div class="special-price"><span class="price-label">Our Price: </span><span class="price" id="product-price">{special_price_formatted}</span></div>';
var specialFalse = '<div class="our-price"><span class="price-label">Our Price: </span><span class="price">{price_formatted}</span></div>';
var specialFalseAlt = '<div class="our-price alt"><span class="price-label">Our Price: </span><span class="price">{price_formatted}</span></div>';
if (isNaN(special) === false && endComp > now && startComp < now) {
document.write(specialTrue)
}else {
if (list <= norm){
document.write(specialFalseAlt)
<script type="text/javascript">
var norm = {price};
var special = "{special_price}";
var list = {list_price};
var end = "{special_to_date}";
var endComp = parse_date(end).getTime();
var start = "{special_from_date}";
var startComp = parse_date(start).getTime();
var now = new Date().getTime();
var specialFormat = "{special_price_formatted}";
var priceFormat = "{price_formatted}";
var label = "Our Price";
Bookmarks