I have a datepicker which is used within the jQuery dialog object. The source of the dialog\'s content is loaded using .load(). Within the dialog I created a sc
.load()
Much simpler way I found:
$("#dialogPopper").click( function() { $("#date").datepicker("disable"); $("#dialog").dialog("open"); $("#date").datepicker("enable"); return false; } );