i'm using this
jQuery('#mydiv').datetimepicker({ ... });
How can i use this function for more than just one ID?
Thought something like this should do the job but it doesn't :(
jQuery('#mydiv','#anotherdiv).datetimepicker({ ... });
jQuery('#mydiv|#anotherdiv).datetimepicker({ ... });
Any ideas? Thanks!
$('.myclass').datetimepicker...