Hi, i've got a problem, im loading into a div a page with form, that have date. I want to get there datepicker, but when the page is loaded with ajax, jquery doesn't see mine input. I tried something like this:
$('#birthdate').live('click', function() {
$(this).datepicker({showOn:'focus'}).focus();
});
well it worked but the whole datepicker is blinking, sometimes doesn't show etc. Is there a possibility that ill show datepicker from mine own onlcik function? something like:
function choosedate() {
$('#birhtdate').datepicker();
}
its not only with datepicker, i just don't know how to use jquery inside ajax loaded page.