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

http://prntscr.com/750zg2

and here's what's happening after upload picture

http://prntscr.com/7510vj


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -