Skip to content

Instantly share code, notes, and snippets.

@erikwiffin
Last active January 12, 2016 17:12
Show Gist options
  • Save erikwiffin/7d11a770791872f8c5ea to your computer and use it in GitHub Desktop.
Save erikwiffin/7d11a770791872f8c5ea to your computer and use it in GitHub Desktop.
// Awesome defaults
$('#file').RSFileUpload();
// Custom onupload
$('#file').RSFileUpload({
progressBar: '#progress-bar',
onupload: function () {
/// do the thing
}
})
// Remove the onupload
$('#file').RSFileUpload({
onupload: false
})
// Bind it later
$('#file').on('RSFileUpload.onupload', function () {
// do the thing
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment