klox
klox

Reputation: 2093

how to use jquery time picker?

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?

Upvotes: 1

Views: 4054

Answers (1)

vikmalhotra
vikmalhotra

Reputation: 10071

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

Upvotes: 1

Related Questions