I want to show a datepicker only on button click
$(\"#day\").datepicker();
the above l
try following :
$("#day").click(function() { $("#hiddenField").datepicker("show"); });
single quotes doesn't work.
hope this helps.