anytime.5.0.5.min.js
anytime.5.0.5.min.css

추가후

<input type="text" id="tabOverDemoInput"/>

<script type="text/javascript">
(function tabOverDemoSetup() {
  $('#tabOverDemoInput').
    click( function(e) { $(this).off('click').AnyTime_picker().focus(); } ).
    keydown(
      function(e) {
        var key = e.keyCode || e.which;
        if ( ( key != 16 ) && ( key != 9 ) ) { // shift, del, tab
          $(this).off('keydown').AnyTime_picker().focus();
          e.preventDefault();
          }
        } );
  })();
</script>