JQuery datepicker
Posted
by showFocus
on Stack Overflow
See other posts from Stack Overflow
or by showFocus
Published on 2010-05-27T14:20:41Z
Indexed on
2010/05/27
14:21 UTC
Read the original article
Hit count: 240
Coud someone help me with this? I am getting these question marks in the graphic and i'm not sure why? I have seen these symbols before and i am sure it had something to do with charset. I am using:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
Here is my JQuery code
<script type="text/javascript">
$(function() {
var date = $('#date').datepicker({
minDate: 0,
dateFormat: "dd/mm/yy",
beforeShowDay: function(date){
if (date.getDay() == 0){
return [false, ''];
} else {
return [true, ''];
}
}
}
);
});
</script>
Image can be found here: http://kevinhenney.com/jquery-datepicker.jpg
Tried to add an imaghe in the post, not allowed just yet.
Thanks in advance
© Stack Overflow or respective owner