Skip to content

Instantly share code, notes, and snippets.

@avtaniket
Created September 2, 2015 06:39
Show Gist options
  • Save avtaniket/ff8a65d0b7823d452341 to your computer and use it in GitHub Desktop.
Save avtaniket/ff8a65d0b7823d452341 to your computer and use it in GitHub Desktop.
JQuery datepicker on dynamic elements
$(function() {
//input calender
$(".app_datepicker").on('focus', function(){
var $this = $(this);
if(!$this.data('datepicker')) {
$this.removeClass("hasDatepicker");
$this.datepicker();
$this.datepicker("show");
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment