I am using jsPlumb and form2js. There are input fields inside the shapes, my problem is I cannot get the data from these input fields.
This flowchart editor is based here
This is the html for the div with inputs that I cannot get.
<div class="window task" style="left: 120px; top:200px; display:none;" data-nodetype="task" id="taskcontainer0">
        <div class="ctrl_container">
            <div class="button_remove">x</div>
        </div>
        <div class="details_container">
            <label class="detail_label">Name</label>
            <input type = "text" class="detail_text" name = "diagram.task.Title[]"/><br/>
            <label class = "detail_label">Description</label>
            <input type = "text" class ="detail_text" name = "diagram.task.Msg[]">
        </div>
    </div>
I need to convert the data inside the input field to JSON.
I am new to this. Thanks
 
     
     
    