how can pass the jquery var value to html input box
var m = $("#id_manufacturer").val();
var markup = "<tr><td><input type='checkbox' name='record'></td><td><input type='text' name='phoneManufacturer' value=m/></td></tr>
$("table tbody").append(markup);
this my code i want pass var m value to input box which i want to save into db via post method
i am working on django i have dynamic add row function to add rows and then save it to db
value='"+m+"' />