I have a page (form.php) that is called via ajax when a user group is clicked in main page. form.php contains form fields (like date picker etc and other fields as per usertype selection in main page. My issue is the when I click on any user type in main page form.php page load using ajax but date picker in this form is not working. I check all path and sequence but its not working.
here is my code
$.ajax({
type: "GET",
url: "services/forms.php",
data: {UserType: UserType},
success: function(data){
$('#assessmentform').html(data);
}
});