0

Please forgive Title - tough to explain

I am dragging a to another droppable div. The dropped span has a clickable object on it. When I click on it, the jquery dialog opens up. I fill out the dialog with fields

When I click on another button, I get the number of objects in the droppable div.

Is there a way to access the data from the dialog via div objects?

motti10
  • 63
  • 1
  • 2
  • 11

1 Answers1

0

if it is a html form: yes you can do that using

$("#formId").serialize();

Hope this helps.

chetank
  • 392
  • 3
  • 17
  • Unfortunately that did not work. I have a span test I drag it on to a div $("#group") I have an O on the span which I can click to open a dialog box I fill out some fields I have a button on the screen. When I get it, I count the number of spans on the div $("#group") and I want to get the dialogs fields based on what div(s) I dropped. Make sense ? – motti10 Apr 06 '15 at 21:18
  • may be you can pass on some fiddle link or so of what you are doing and then may be i can take a look – chetank Apr 07 '15 at 20:51