View gist:4500539
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="drop_zone">Drop files here</div> | |
<output id="list"></output> | |
<script> | |
function handleFileSelect(evt) { | |
evt.stopPropagation(); | |
evt.preventDefault(); | |
var files = evt.dataTransfer.files; // FileList object. |
View gist:1062581
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" type="text/css" href="http://assets.transloadit.com/css/transloadit2.css" /> | |
<script type="text/javascript"> | |
$(document).ready(function() { | |
var bypassValidationAndTlBinding = false; | |
$("#MyForm").submit(function( e) { | |
if (!bypassValidationAndTlBinding) { | |
if( $("#firstname").val() != "dan" ) { | |
alert("the name is not dan"); | |
e.preventDefault() |