This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function () { | |
var d = new Date(); | |
var dayOfWeek = d.getDay() | |
var hour = d.getHours(); | |
if (dayOfWeek === 1 || dayOfWeek === 2 || dayOfWeek === 3) { | |
$('.element').show(); | |
} | |
if (dayOfWeek === 4 && hour < 13) { | |
$('.element').show(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
$('.price-range-lg').hide(); | |
$('.price-range').hide(); | |
$('.filter').css('display','none'); | |
$('.filter-remove').each(function(){ | |
var showfilters = $(this).attr('data-filtercode'); | |
$('.filter-title[data-filtercode="'+showfilters+'"]').click(); | |
}); | |
}); | |
$('.filter-title').click(function(){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
$("#bill_phone, #ship_phone").keyup(function () { | |
this.value = this.value.replace(/[^0-9\.]/g,''); | |
}); | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[%SET [@ratings-count@] %][@rating_round_half@] [%/set%] | |
[%set [@ratings-count@] %][%split delimiter:'-'%] | |
[%param data1%][@ratings-count@][%/param%] | |
[%param *body%] | |
[%if [@count@] ne '0' %].[%/if%][@data1@] | |
[%/param%] | |
[%/split%][%/set%] | |
[%set [@ratings-count-while@] %][@ratings-count@][%/set%] | |
[%WHILE [@ratings-count-while@] > 0 %] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
if ($('#productextra0').length) { | |
$('#productextra0').keyup(function(){ | |
if ($('#productextra0').val() != '') { | |
$('.addtocart').removeClass('disabled'); | |
} | |
else { | |
$('.addtocart').addClass('disabled'); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a onclick="$('a[href=#reviews]').tab('show'); $('html,body').animate({scrollTop:$('a[href=#reviews]').offset().top}, 600); return false;" data-toggle="tab"> | |
Read Reviews | |
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[%CONTENT_PATH id:'[@inventory_id@]' type:'brand' limit:'1'%][%PARAM *body%] | |
<a class="product-brand" href="[%url type:'cms'%][%PARAM id%][@content_id@][%END PARAM%][%/ url%]">[@content_name@]</a> | |
[%END PARAM%][%END CONTENT_PATH%] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
if (window.screen.width > 767) { | |
$('.zoom').zoom(); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (min-width:1200px) { | |
.home-thumb { | |
width:20%; | |
float:left; | |
} | |
} | |
@media (min-width:992px) and (max-width:1199px) { | |
.home-thumb { | |
width:25%; | |
float:left; |
OlderNewer