View full file name after selection with input file type - HTML CSS CSS Form

HTML CSS examples for CSS Form:input

Description

View full file name after selection with input file type

Demo Code

ResultView the demo in separate window

<html lang="en">
 <head> 
  <title>  Juan</title> 
  <style>
input {<!-- ww w.j a v  a  2  s . c om-->
   width:100%;
}
</style> 
 </head> 
 <body translate="no"> 
  <input id="myFile" type="file" name="myFile" class="myFile" required="true">  
 </body>
</html>

Related Tutorials