Did you ever face this IE7's bug:
<input type="file" id="xxx">
<script>
$('#xxx').change(function(){ alert(1) })
</script>
when I click the input & pick a file, the alertbox shows the first time. Then I click on the blank area on the body, the alertbox shows once again. This happens even when I bind the change event to input:file with JQuery 1.6 (lastest at this moment).
How could I prevent this by the simplest way? Thanks for all suggestions!