Thanks for looking, all sincerely helpful answers are up-voted. I have some date input fields that are there when the page loads and a bunch that get generated dynamically. Instead of calling .datepicker() on that class each time a new instance is generated, I'm using .live, but it doesn't seem to be working. Any idea why?
$("input[name=myfav]").live("click", function(){
$(this).datepicker({
/* some options here */
});
});
I should mention, it works perfectly fine with autocomplete for instance.
$("input[name=mytwo]").live("click", function(){
$(this).autocomplete("somefile.php");
});