(function($){ $.fn.clearDefault = function(){ return this.each(function(){ var default_value = $(this).val(); $(this).focus(function(){ if ($(this).val() == default_value) $(this).val(""); }); $(this).blur(function(){ if ($(this).val() == "") $(this).val(default_value); }); }); }; })(jQuery)
function calculateShipping(amount) {
if (amount < 25) {
return 5.00;
} else if (amount > 75) {
return 0;
} else {
return 10.00;
}
}
