So, I am using draggable and droppable to drag a table to a droppable and then use the data in the table to populate the droppable target.
When I use Firebug to check what's in ui.draggable, here's an example of what's in the innerHTML: <tr><td class="cntidx" id="cntidx_0">1</td><td class="cnticn" id="cnticn_0"><img src="/wv_dev/images/16x16/money_envelope.png" width="16" height="16"></td><td class="cntinf" id="cntinf_0"><table class="cntinfbox" id="cntinfbox_0"><tbody><tr><td><input id="contactName_0" name="contactName_0" value="ghgfh" onblur="updateContact(this,0,1);" size="18" maxlength="64" type="text">, <input id="contactSpecifier_0" name="contactSpecifier_0" value="fgfgh" onblur="updateContact(this,0,2);" size="18" maxlength="256" type="text"><br><input id="street_0" name="street_0" value="fghf" onblur="updateContact(this,0,4);" size="18" maxlength="256" type="text">, <input id="specifier_0" name="specifier_0" value="fhhg" onblur="updateContact(this,0,5);" size="18" maxlength="256" type="text"><br><input id="city_0" name="city_0" value="fggf" onblur="updateContact(this,0,6);" size="18" maxlength="64" type="text">, <input id="state_0" name="state_0" value="" onblur="updateContact(this,0,7);" size="18" maxlength="256" type="text"> <input id="zip_0" name="zip_0" value="fggfhfghgf" onblur="updateContact(this,0,8);" size="10" maxlength="10" type="text"></td></tr></tbody></table></td><td class="cntend" id="cntend_0"><img src="/wv_dev/images/16x16/delete.png" onclick="removeContact(0);"></td></tr> So, is there a way to use jQuery selectors to get to each element by id, or do I have to parse it out manually? For example, if I want to get at contactName_0's value, can I get to it in a jQuerish way?