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
$(window).load(function(){ | |
/* image preview */ | |
$('#photo_image').change(function(){ | |
var oFReader = new FileReader(); | |
oFReader.readAsDataURL($('#photo_image')[0].files[0]); | |
oFReader.onload = function (oFREvent) { | |
$('#preview').html('<img src="'+oFREvent.target.result+'">'); | |
$('#preview img').css({"max-width":"900px"}); | |
}; | |
}); | |
}); |
No comments:
Post a Comment