Can't Get My Jquery Dialog To Open On Menu Item Click
I've got my first app with jQuery coming along, and I've got both my dialog boxes built and executing as they should be, and the login box comes up when I click login (in the File
You are missing a hash (#
).
Replace
$("dateturn-form").dialog("open");
with
$("#dateturn-form").dialog("open");
Post a Comment for "Can't Get My Jquery Dialog To Open On Menu Item Click"