Reputation: 27392
Is it possible to access the form values in a jQueryUI dialog box from outside the box?
Upvotes: 1
Views: 392
Reputation: 196002
If you have given an ID to the dialog box then you could have access to the form with
$('#dialogID form')
or if you can give an id to the form and access it like normal..
$('#formID')
Upvotes: 2