Brian
Brian

Reputation: 27392

Access data from jQueryUI dialog box

Is it possible to access the form values in a jQueryUI dialog box from outside the box?

Upvotes: 1

Views: 392

Answers (1)

Gabriele Petrioli
Gabriele Petrioli

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

Related Questions