Posted on: 9/23/2014 1:40:02 PM | Views : 389

$(document).ready(function () { $("#imageSelector1").change(function () { readURL1(this); }); function readURL1(input) { if (input.files && input.files[0]) { var reader1 = new FileReader(); reader1.onload = function (e) { $('#imagePreview1').attr('src', e.target.result); } reader1.readAsDataURL(input.files[0]); } } <table id="addListingImageTable" runat="server" border="0" style="margin-left:30px"> <tr> <td align="center"><input type="button" class="selectImage" value="Select Image" /><input type="file" class="fileSelector" value="Select Image" id="i ...

Go to the complete details ...