I tabled this issue for a while, trying not to spend too much time on it. But, it came back to haunt me in another project.

If you attempt to clone an element with jQuery's clone() method, you'll find that you are unable to apply a Datepicker() to the element.

The reason is, when you clone an element, you also clone it's class attribute. In the case of a Datepicker element, that class is "hasDatepicker".

<input class="hasDatepicker" name=... />

When the Datepicker method is called on an element, it first checks to see if that element already has the hasDatepicker class.

So, we need to remove this class before applying the Datepicker method, i.e.

$(this).removeClass('hasDatepicker').datepicker();

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *