I've got a form to which I add new date field elements using jquery/javascript on the fly. I'm trying to attach jquery's datepicker to that date field input( any widget/action would have the same behavior).
<script>
$(function() {
$( ".datepicker" ).datepicker();
});
</script>
<p>Date: <input type="text" class="datepicker"></p>
If an element is present in the original html of page, then the datepicker widget gets binded to date field. However, if the same date field gets added on the fly, the datepicker widget does not work. For clicking etc, jquery provides 'live' function, which can attach an action "after" an object gets created. But how can I mimic the same behavior for datepicker, so that it gets attached "after" object creation?