I am creating an app in which i want to app datepicker to select birthdate so for that i tried to use jquery-ui-timepicker-addon.js but the problem is when i tried to use it statically in the div then it shows the dateselector but when i try to create it dynamically it's not working can any one tell why its acting like this and where i am making mistake here is the code for creating dynamic datepicker:
var creatText = $(document.createElement('input')).attr('type','text');
creatText.attr('class','datetimepicker');
creatText.attr('id','birthdate');
creatText.attr('size','25');
creatText.attr('placeholder','Birth Date');
creatText.appendTo('#contentdemo');
here is the code for creating date selector statically and its working fine:
<div data-role="content" id="contentDemo">
<div data-role="collapsible-set" data-content-theme="c" style="margin-left: 8px;margin-right: 8px" id="dynamic_actionform">
</div>
<input class='datetimepicker' placeholder="birth date" size='25'>
</div>
here is the example in github for the js files im usingenter link description here error in the logcat:
logcat09-05 06:37:41.943: D/CordovaLog(2822): Uncaught Error: no such method 'value' for slider widget instance 09-05 06:37:41.943:
E/Web Console(2822): Uncaught Error: no such method 'value' for slider widget instance at file:///android_asset/www/js/jquery-1.7.1.js:552
Thanks in advance.