Skip to content Skip to sidebar Skip to footer

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

Solution 1:

Once again Alex :) You are missing # in ID selector

DEMO

$("#dateturn-form").dialog({ });

Solution 2:

You are missing a hash (#).

Replace

$("dateturn-form").dialog("open");

with

$("#dateturn-form").dialog("open");

Demo

Post a Comment for "Can't Get My Jquery Dialog To Open On Menu Item Click"