hotfix/paypal-note
candice 2 years ago
parent 908f03dfd5
commit e743daaff0

@ -714,6 +714,24 @@ Our must-dos/must-sees are…" style="height:90px;"></textarea>
}
});
})
// Trip Length
$('#tripLengthPlus').click(function () {
tripLength++;
$('#tripLengthNumber').val(tripLength);
});
$('#tripLengthMinus').click(function () {
if (tripLength > 1) {
tripLength--;
$('#tripLengthNumber').val(tripLength);
}
});
$("#Date_Start").datepicker({
format: 'mm/dd/yyyy',
autoclose: true,
startDate: '+2d'
});
</script>
<style>
.date_select {width: 27.5% !important; margin-bottom: 10px;}

Loading…
Cancel
Save