Advertisement
Guest User

Untitled

a guest
Mar 16th, 2011
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  5. <title>Insert title here</title>
  6. <script type="text/javascript">
  7. function test()
  8. {
  9.  
  10. var filePath=document.getElementById("fileBrowser").value;
  11. var index=filePath.lastIndexOf("\\");
  12. alert(filePath.substring(0,index));
  13. }
  14. </script>
  15. </head>
  16. <body>
  17. <input type="file" id="fileBrowser" onchange="test()"></input>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement