Execute a javascript function when user selects a file via input file field - Javascript jQuery

Javascript examples for jQuery:Form Input

Description

Execute a javascript function when user selects a file via input file field

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){// w  ww.j  av  a  2  s . c  o  m
$(":file").change(function() {
    console.log("Yes!");
});
    });

      </script> 
   </head> 
   <body> 
      <input type="file">  
   </body>
</html>

Related Tutorials