
September 19th, 2012, 07:44 AM
|
|
Registered User
|
|
Join Date: Jul 2012
Posts: 4
Time spent in forums: 30 m 17 sec
Reputation Power: 0
|
|
|
jQuery - How to add datepicker in ajax response result
<link href="jquery-ui-1.8.23.custom.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-1.8.0.min.js"></script>
<script type="text/javascript" src="/js/jquery-ui-1.8.23.custom.min.js"></script>
<script>
$('#date').datepicker();
</script>
this is function
function edit_emp(id){
//alert('work on edit user');
var xmlhttp2;
if(window.XMLHttpRequest){
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp2=new XMLHttpRequest();
}
else {
// code for IE6, IE5
xmlhttp2=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp2.onreadystatechange=function(){
if (xmlhttp2.readyState==4 && xmlhttp2.status==200){
document.getElementById("fields").innerHTML=xmlhttp2.responseText;
}
}
//alert(id);
xmlhttp2.open("GET","editEmp.php?empID="+id,true);
xmlhttp2.send();
$('#fields').fadeIn('slow');
}
response dive
<div id="fields">
</div>
here is page edit_emp.php
<input type="text" name="dob" id="dob" class="dob" />
I want show datepicker in this txt box
please help
|