I wante to change the label for <input type=“file” from ‘browse…’ to ‘…’ I found a code and it works fine on IE bt it does nt work on Firefox…
Can anybody help ?
this my code:
<html>
<head>
</head>
<body>
<form>
<input type=file name=newfile style=“display: none;”>
<input name=file type=text style=“width:60px”>
<input type=button onClick=“newfile.click();file.value=newfile.value;” value=“…”>
</form>
</body>
</html>