How to Copy Form Values to Another Using Jquery
$("#SubmitButton").click(function () { $(':input[name]', "#searchForm").each(function () { $...
https://www.czetsuyatech.com/2011/06/jquery-copy-form-value-to-another-form.html
$("#SubmitButton").click(function () {
$(':input[name]', "#searchForm").each(function () {
$('[name=' + $(this).attr('name') + ']', "#generateReportForm").val($(this).val())
})
});
In the above code we have 2 forms with ids: searchForm and generateReportForm. searchForm has SubmitButton inside it as child element and when it's click it will copy all its field values into generateReportForm.




Post a Comment