Working with a JavaScript plugin called fineloader to upload files. My code is below and a live demo is located here. For some reason, the button and input doesn't show using IE7 and my laptop using IE8, but does show using my virtual machine and IE8 as well as IE9/FF/etc. Any help to make it visible would be very appreciated.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fine Uploader - Basic</title>
</head>
<style>
#upload-block {width: 280px;}
button.gray {
border:1px solid black;
color: black;
height: 25px;
}
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="fineuploader-3.1.js"></script>
<script>
$(document).ready(function() {
var uploader = new qq.FineUploaderBasic({button: document.getElementById('uploader')});
});
</script>
<body>
<div>
<label>FILE:</label>
<div id="upload-block">
<div id="uploader">
<input type="text" readonly id="myFilename">
<button class="gray">BROWSE</button>
</div>
</div>
</div>
</body>
</html>