Got it. Sometimes odd things happen.
As for populating the form, you can pull the info from a list using GetListItems and the populate the HTML elements with the values.
For instance, to populate an input field, you'd use:
As for populating the form, you can pull the info from a list using GetListItems and the populate the HTML elements with the values.
For instance, to populate an input field, you'd use:
$("input[id='your_id']").val(your_value);
M.