Skip to content

Instantly share code, notes, and snippets.

@oleander
Created March 7, 2011 22:29
Show Gist options
  • Save oleander/859409 to your computer and use it in GitHub Desktop.
Save oleander/859409 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-type">
<title>Drag &amp; Drop Tacos</title>
<link rel="stylesheet" href="/css/master.css" type="text/css" media="screen" title="no title">
</head>
<body>
<div id="drop_target">
</div>
</body>
<script src="/javascripts/jquery-1.4.3.js" type="text/javascript"></script>
<script src="/javascripts/jquery.dnduploader.js" type="text/javascript"></script>
<script type="text/javascript">
$("#drop_target").dndUploader({
url : "/",
method : "PUT"
});
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment