javascript - show form and content in "verification" modal -
i present user form filled out in modal pops after click "submit" verification. see carbon copy of form, each field disabled or grayed out can on , confirm right. make changes form @ stage require cancel out of modal , taken form.
i having trouble getting data contained within form. there easy way jquery or javascript?
or there strategy allowing user on changed missing/forgetting?
you can display clone version of form in modal:
var $clonedform = $('#myformid').clone(); $('input, select, textarea', $clonedform).attr('disabled', 'disabled'); $clonedform.appendto('#modalid');
Comments
Post a Comment