Advertisement
Guest User

Untitled

a guest
Oct 18th, 2013
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function sub_upload()  {                           
  2.     $('<form method="post" enctype="multipart/form-data">', {
  3.     "id": "file_form",
  4.     "html": '<input type="hidden" name="customer_first" id="customer_first" value="' + $("[name=Contact0FirstName]").val() + '" /> <input type="hidden" name="customer_last" id="customer_last" value="' + $("[name=Contact0LastName]").val() + '" /> <input type="hidden" name="customer_email" id="customer_email" value="' + $("[name=Contact0Email]").val() + '" /> <input type="hidden" name="AppName" value="upload_file" /> <input type="hidden" name="MAX_FILE_SIZE_" value="10000000" /> <input type="file" name="UserFile_" id="UserFile_" value="' + $("[name=UserFile]").val() + '"/>',
  5.     "action": window.siteRoot + '/help/FormProcess.php'
  6.     }).appendTo(document.body).submit();
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement