I want to create a div attach drag drop feature and when someone click it they can choose their image.
I have coded something and its can - click div and choose your image - preview your image before upload
you can check my fiddle
css
.uploader {width:300px;height:350px;background:#f3f3f3;border:2px dashed #e8e8e8;}
javascript
    var imageLoader = document.getElementById('filePhoto');
    imageLoader.addEventListener('change', handleImage, false);
function handleImage(e) {
    var reader = new FileReader();
    reader.onload = function (event) {
        $('.uploader').html( '<img width="300px" height="350px" src="'+event.target.result+'"/>' );
    }
    reader.readAsDataURL(e.target.files[0]);
}
html
<div class="uploader" onclick="$('#filePhoto').click()">click here or drag here your images for preview and set userprofile_picture data</div>
            <input type="file" name="userprofile_picture"  id="filePhoto" style="display:block;width:185px;"  />
you can check http://jsfiddle.net/ELcf6/
 
    