How to get time from jquery Timepicker -


i use jquery timepicker extended able pick not date time. adding timepicker jquery ui datepicker. how pick data:

$('#test').live('click', function(){         $('body').append('<div id="timepicker"></div>');         var d = new date();         $('#timepicker').datetimepicker({             mindate: new date()         }); }); 

from examples date pasted input field. not want have input field, have button #test. done button of picker work input fields. how can fix , how date without input field?

you can hide input field using css

<input type="text" style="display:none" id="datetimefield" /> 

hope helps


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -