I want to do something like the following(hopefully you get the idea):
$('.timepickersec').live(function() {
$(this).jtimepicker();
});
That is,for each new created .timepickersec
in the future,bind the jtimepicker
on it.
But the above is not working, does $.live
has such a feature?