javascript - Remove displayed picture from background -
i'm using script upload picture. changes automatically when use script displays large picture in background of page. want remove picture shown in background of page. script
<script type="text/javascript"> $(window).load(function(){ $('#i_file').change( function(event) { $("img").fadein("fast").attr('src',url.createobjecturl(event.target.files[0])); }); }); </script>
and here button
<input type="file" id="i_file" name="img" value="" />
i can't post picture here used prntscr anyway here's original post
and here's what's happening after upload picture
Comments
Post a Comment