Hi,
I have used the following JS to blockout Sundays and Mondays for my form, but it's causing the datepicker to pop up in every field in the form.
<script type="text/javascript">
$(document).ready(function(){
$('input').datepicker({beforeShowDay: function(date){
return [(date.getDay() > 1), ''];
}});
});
</script>
Here is a link to the page with the form: http://alturl.com/jiptg
Any ideas as to how to get around this?
Thanks!