Skip to content

Instantly share code, notes, and snippets.

@dkarter
Created February 19, 2015 20:15
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 dkarter/dcb68e568bdf60b2dc33 to your computer and use it in GitHub Desktop.
Save dkarter/dcb68e568bdf60b2dc33 to your computer and use it in GitHub Desktop.
File Drop Experiment JS
$(document).on('dragenter', function (){
$('.dropbox').height(300);
$('.drag-mask').show();
});
$('.drag-mask').on('dragleave', function () {
$('.dropbox').height(30);
$('.drag-mask').hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment