pietpiraat 0 Light Poster

Hello,

I have a jQuery datpicker setup like this:

<script type="text/javascript">
    $(function() {
    $('input').filter('#startPicker').datepick({
    minDate: new Date(2010, 11, 20), 
    maxDate: new Date(2010, 11, 27),
    multiSelect: 999,
    altField: '#date'
    }); 
});
</script>

is it possible to show the number of dates the user clicks on in the altfield, or somewhere else?

thanks alot!