Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <form id="myForm" action="add_item.php" method="post" enctype="multipart/form-data">
  2. Select image to upload:
  3. <input type="file" name="fileToUpload" id="fileToUpload">
  4. <input type="submit" value="Upload Image" name="submit">
  5. </form>
  6. <p id="paragraph">Suggestions:</p>
  7. <script>
  8. $('#paragraph').show();
  9. $.ajax
  10. (
  11. {
  12. url: 'add_item.php',
  13. type: 'POST',
  14. success: function () {
  15. $('#paragraph').show();
  16. $('#myForm').submit();
  17. }
  18. }
  19. )
  20. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement