I want to extract data from the list and put it in the form using jquery!
I succeeded to know how to import data from "Last Name" and "First Name" of the list into text fields "Last name" and "First name" of the form by
<input type="text" id="lastname"/>
var x="";
x = x + x.get_item('Last_x0020_Name');
$("#lastname").val(x.toString());
I still have problem on select field (Age) and textarea filed (description)
