Is there a variant of the jQuery live () function that is not event bound?
For example, I would like to do something like this:
$('.jdate').live(function() {
var datebox = $(this);
datebox.datepicker();
}
therefore, all .jdate fields that are on the form and those that are added later through ajax are handled the same way.
source
share