views:

32

answers:

1

dear all..i'm newbie at time picker. can you tell me how to use jquery time picker after download? how to make it show inside form?

A: 

Here

$(function(){
    $('#test-1').timepickr({
        handle: '#trigger-test'
        convention: 12 });
});

You can put this script inside a tag.

Then inside your form create a input field with id "test-1" in this case.

Check the full reference here

ShiVik