Skip to content

Instantly share code, notes, and snippets.

@dhamaso
Created October 2, 2017 17:43
Show Gist options
  • Save dhamaso/ba5415d1419fd7a7d3dd53eef2a7ec73 to your computer and use it in GitHub Desktop.
Save dhamaso/ba5415d1419fd7a7d3dd53eef2a7ec73 to your computer and use it in GitHub Desktop.
Reset input file jquery
// https://www.gyrocode.com/articles/how-to-reset-file-input-with-javascript/
var $el = $('#example-file');
$el.wrap('<form>').closest('form').get(0).reset();
$el.unwrap();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment