Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

browse button missing from input file in IE8?

I've taken a screenshot of my file input method for both IE 9 and 8. Why would IE not show the browse button? the table sits inside a form like so:

<table>
    <tr>
        <td colspan="2"><h3>Upload Photo</h3></td>
    </tr>      
    <tr> 
        <td colspan="2"><input type="file" name="mapimage" id="mapimage"/></td>
    </tr>
    <tr>
        <td><input type="submit" value="Upload" name="update_image" id="update_image"/>      </td> 
        <td><img id="loading" src="images/loading.gif" alt="working.." style="visibility: hidden;" /></td> 
    </tr>
</table>

I've tried adding a size attribute but it still isn't showing up. Are there any work arounds for IE 8 and below or is this a known issue?

like image 943
Paul Avatar asked Sep 26 '11 01:09

Paul


2 Answers

I saw this as well when I was testing in IE Tester. Asked someone who had a native version of IE8 and saw it looks fine. I believe it's just a bug in IE Tester.

like image 120
hybrid Avatar answered Sep 29 '22 22:09

hybrid


Unless you have some css somewhere doing this I see no problem. It works for me in IE8.

like image 33
Peter Avatar answered Sep 29 '22 22:09

Peter