Hi,
I wonder if it is possible to change the browse button.
I know it's possible with the following script (by hiding the real button), however this doesn't work for mozzila, for example.
I searched online and at the forum and this solution is more then a year old, I was wondering if in the mean time a better solution was created or are we still stuck with this one?
Thanks in advance!
I wonder if it is possible to change the browse button.
I know it's possible with the following script (by hiding the real button), however this doesn't work for mozzila, for example.
Code:
Filename:
<input type=file
name='file1'
size='15'
style='display: none;'><br>
<input type='text'
name='file2'
id='file2'>
<img src='browse.gif'
name='browser'
id='browser'
width='91' height='20' border='0'
alt=''
align='absmiddle'
onclick='document.all.file1.click();
document.all.file2.value=document.all.file1.value'>
Thanks in advance!