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

How to fill datepicker field value of JS function? For example: js_function_return_date()

$('#field').datepicker()
share|improve this question
Are you talking about the JQuery UI's Datepicker? – Bigood Feb 26 at 13:50
Updated the answer, check below. – Derek Feb 26 at 14:13
Updated my answer too. – Bigood Feb 26 at 14:15
Learn to post question , reading FAQ and About us – Shail Feb 26 at 14:24

closed as not a real question by casperOne Feb 26 at 21:16

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

You can get the field value as follows:

$('#field').val();

And you can set it using:

$('#field').val("12/23/2013");

Assuming "field" is id of an input box.

share|improve this answer

[Updated]

Try this:

$('#field').val(js_function_return_date());
$('#field').datepicker();
share|improve this answer

There is an API in bootstrap-datepicker.js, https://github.com/eternicode/bootstrap-datepicker

Method : update

Arguments:

date (String|Date) Update the datepicker with given argument or the current input value.

$( "#field" ).datepicker('update', js_function_return_date() );
share|improve this answer

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