Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't get onSelect working on my jQuery datepicker.

Heres my code:

<script type="text/javascript">
$(function() {
    $('.date-pick').datePicker( {
        onSelect: function(date) {
            alert(date)
        },
        selectWeek: true,
        inline: true,
        startDate: '01/01/2000',
        firstDay: 1,
    });
});
</script>

It's like it doesn't register the onSelect function. What am I doing wrong?

share|improve this question

8 Answers

No comma after the last property.

Semicolon after alert(date);

Case on datepicker (not datePicker)

Check your other uppercase / lowercase for the properties.

$(function() {
    $('.date-pick').datepicker( {
        onSelect: function(date) {
            alert(date);
        },
        selectWeek: true,
        inline: true,
        startDate: '01/01/2000',
        firstDay: 1
    });
});
share|improve this answer
worked for me after several refreshes of the browser! (+1) – MUG4N Nov 28 '12 at 16:47

datePicker's onSelect equivalent is the dateSelected event.

<script type="text/javascript">
$(function() {
    $('.date-pick').datePicker( {
        selectWeek: true,
        inline: true,
        startDate: '01/01/2000',
        firstDay: 1,
    }).bind('dateSelected', function(e, selectedDate, $td) {
        alert(selectedDate);
    });
});

This page has a good example showing the dateSelected event and other events being bound.

share|improve this answer
<script type="text/javascript">
    $(function() {
        $("#datepicker").datepicker({ 
              onSelect: function(value, date) { 
                 window.location = 'day.jsp' ; 
              } 
        });
    });
 </script>

<div id="datepicker"></div>

I think you can try this .It works fine .

share|improve this answer

As far as I know you are using http://www.kelvinluck.com/assets/jquery/datePicker/

Now the latest version is 2.1.2

You can download from here

For me the best datepicker is jQuery UI datepicker

share|improve this answer
jQuery UI datepicker doesn't support the selectWeek property, does it? – Tommy Jakobsen May 20 '09 at 13:03
What is the role of selectWeek property? – Gordian Yuan May 20 '09 at 13:10
It lets you select (and highlights) a week – Tommy Jakobsen May 20 '09 at 13:13
oh!In this case jQuery UI datepicker can't do that, it only can Select a day in the new version(means 1.7).Perhaps you can modify it to fit your needs. – Gordian Yuan May 20 '09 at 13:34
No idea how to do that as I'm very new to jQuery :) But I can live without it. jQuery UI datepicker is very nice indeed, so I'll use that. Any idea how I can return ISO-8601 week number form a date? Is there such a feature in the date library? – Tommy Jakobsen May 20 '09 at 13:38
show 1 more comment

The function datepicker is case sensitive and all lowercase. The following however works fine for me:

$(document).ready(function() {
  $('.date-pick').datepicker( {
    onSelect: function(date) {
        alert(date)
    },
    selectWeek: true,
    inline: true,
    startDate: '01/01/2000',
    firstDay: 1,
  });
});
share|improve this answer
"Error: Object doesn't support this property or method" on line 14, which is: $('.date-pick').datepicker( { – Tommy Jakobsen May 20 '09 at 13:02
See comment above about which 'date picker' you are using - my example is the JQuery UI one, yours appears to be a different one. – samjudson May 20 '09 at 13:19

I have downloaded the datepicker from jqueryui.com/download and I got 1.7.2 version but still onSelect function didn't work. Here is what i had -

$("#datepicker").datepicker();

$("#datepicker").datepicker({ 
      onSelect: function(value, date) { 
         alert('The chosen date is ' + value); 
      } 
});

I found the solution in this page -- http://stackoverflow.com/questions/1274347/problem-with-jquery-datepicker-onselect . Removed the $("#datepicker").datepicker(); once and it worked.

share|improve this answer
Howdy found the answer in another thread -- stackoverflow.com/questions/1274347/… I was using datepicker event twice on a div. Should only be initialized once. – srilatha Dec 23 '09 at 18:41

The best solution is to set the datepicker defaults

folows the code that I used

$.datepicker.setDefaults({
    onSelect: function () {
        $(this).focus();
        $(this).nextAll('input, button, textarea, a').filter(':first').focus();
    }
});
share|improve this answer

It should be "datepicker", not "datePicker" if you are using the jQuery UI DatePicker plugin. Perhaps, you have a different but similar plugin that doesn't support the select handler.

share|improve this answer
Aha. Didn't knew there were different date picker plugins. Whats the correct plugin to use then? What I need is the "selectWeek: true" feature, and onSelect. – Tommy Jakobsen May 20 '09 at 12:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.