Skip to content

Instantly share code, notes, and snippets.

@markdaws
Created February 27, 2012 01:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markdaws/1920585 to your computer and use it in GitHub Desktop.
Save markdaws/1920585 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Upload Example</title>
</head>
<body>
<form id="uploadForm"
enctype="multipart/form-data"
action="/api/photos"
method="post">
<input type="file" id="userPhotoInput" name="userPhoto" />
</form>
<span id="status" />
<img id="uploadedImage" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="/javascripts/jquery.form.js"></script>
<script src="/javascripts/upload.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment