var data = "<div><table width='100%'><tr><td align='right' ><div class='close16'/></td></tr></table><div><table><tr><td rowspan='4' width='50px;'><img src='" + staffItem.Photo + "' Width='48' Height='48' /></td><td>" + staffItem.Name + " ( " + staffItem.StaffId + " )</td></tr><tr><td><table cellpadding='0' cellspacing='0'><tr><td>" + staffItem.Email + "</td><td> | </td><td>" + staffItem.Mobile + "</td></tr></table></td></tr></table></td></tr></table></div></div> ";
$('#staffInCharge').append(data);
I've collected staff details like this, from the autocomplete textbox, and am storing these into a div.....how can I collect the "staffId" alone(even if I have 5 or 10 records within the div).....I think I can get it by using .each method, I donno how to proceed, can anyone help me here
staffId? – Dogbert Mar 27 '12 at 15:21