Image Uploads with 100% Less Suck. Guaranteed.

Using a little bit of jQuery we can upload images without the suck. Note: This demo will rock your socks in all browsers.

Old and Busted

Upload

Select a file and click upload. Simple right? Except once I select my image I can no longer see what was selected. The name of the file is at the end of the input, and if the input is short, or the file path is deep, I'm not going to see anything useful. Assuming that I took the time to give my file a descriptive name, which I probably didn't because hey, it's an image, it should be self descriptive.

New Hotness

Save

Now try this variation. We ditch the upload button in favor of a save button and fire the AJAX upload event as soon as a file is selected. The image is processed server side and a thumbnail is loaded onto the existing page. Doesn't that feel so much better?

We now have a visual representation (imagine that) of the image we selected. This is particularly useful in larger forms when many fields will be submitted with a single action. It allows the user to review the form before pressing save and see what image (or images) they selected.

The Code

You're going to need jQuery and the AJAX Upload jQuery plugin. Link them up, make sure jQuery is loaded first.

<script src="/js/jquery.min.js" type="text/javascript"></script>
<script src="/js/ajaxupload.js" type="text/javascript"></script>

Here is the JavaScript we're going to add in its entirety. You can also see it if you view the source of this page.

$(document).ready(function(){

  var thumb = $('img#thumb');

  new AjaxUpload('imageUpload', {
    action: $('form#newHotnessForm').attr('action'),
    name: 'image',
    onSubmit: function(file, extension) {
      $('div.preview').addClass('loading');
    },
    onComplete: function(file, response) {
      thumb.load(function(){
        $('div.preview').removeClass('loading');
        thumb.unbind();
      });
      thumb.attr('src', response);
    }
  });

});

Now let's break it down.

First we attach the the AjaxUpload behavior to our file form element.

new AjaxUpload('imageUpload', {

Next we specify where we want to post the AJAX upload to. We like to keep all our urls in our html document so we pass this url using the action attribute of our form element.

action: $('form#newHotnessForm').attr('action'),

Set the name of the file form element that will be posted to your server.

name: 'image',

Add a class to your preview div to indicate that the image is uploading. In our case we are applying a background image to the preview div. We also need to display: none; the img tag in the preview div so that the loading background image is visible, also for a more subtle reason explained below.

onSubmit: function(file, extension) {
  $('div.preview').addClass('loading');
},

When the image has been uploaded we need to do two things. First we need to set the src attribute of our preview img tag to the new thumb. Secondly we need to remove the loading class. If we simply execute those things in that order then we will see an annoying flicker of the old image when the loading class has been removed but the new image has not yet loaded.

We avoid this problem by waiting to remove the loading class until after the preview image's load event fires. We also unbind our listener after it had fired since we only wanted to capture this event once.

onComplete: function(file, response) {
  thumb.load(function(){
    $('div.preview').removeClass('loading');
    thumb.unbind();
  });

Lastly we set the source of preview image to the thumbnail our server just created. In this example the response from the AJAX call is just the thumbnails url as text. You could also return it in whatever fancy format you like.

  thumb.attr('src', response);
}

Score an awesome product engineering or design job

via Job Board from ZURB

GitHub

Follow us on GitHub to be informed about the latest code updates to our projects as they happen.

Startup playground

Log in with your ZURB ID

Log in with Google

Don't have a ZURB ID? Sign up

Forgot password?
×

Sign up for a ZURB ID

Sign up with Google

Already have a ZURB ID? Log in

×