Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. var myForm = document.createElement("form");
  2.  
  3. myForm.method = "POST";
  4. myForm.action = strURL;
  5. myForm.target = "_blank";
  6.  
  7. var myInput = document.createElement("input");
  8. myInput.type = "text";
  9. myInput.name = "sim";
  10. myInput.value = JSON.stringify(/*data to post goes here*/);
  11. myForm.appendChild(myInput);
  12.  
  13. document.body.appendChild(myForm);
  14. myForm.submit();
  15. $(myForm).hide();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement