Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. input[type=file]{
  2. width:90px;
  3. color:transparent;
  4. }
  5.  
  6. window.pressed = function(){
  7. var a = document.getElementById('aa');
  8. if(a.value == "")
  9. {
  10. fileLabel.innerHTML = "Choose file";
  11. }
  12. else
  13. {
  14. var theSplit = a.value.split('\');
  15. fileLabel.innerHTML = theSplit[theSplit.length-1];
  16. }
  17. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement