I'm trying to use the solution over at quirksmode.org to sort the file upload input inconsistency problem, using the following javascript:

$('.sidebar-uploadcv input[type=file]').attr('onchange','javascript:document.getElementById("fakeupload").value = this.value').addClass('file_input_hidden');

The trouble is, this doesn't work properly in Chrome. It renders and the user can click to choose a file, but the filename isn't then displayed in the #fakeupload input.

Can anyone help?

link|improve this question

80% accept rate
Chrome doesn't allow you to access the file directory with JS for security reasons. Any JS manipulation will create a C:\Fakepath\file.jpg if I remember correctly. – Seth Jul 27 '11 at 14:05
The thing is - even that isn't put into the fakeupload input field, which the above javascript should (I think) make happen. – melat0nin Jul 27 '11 at 16:08
feedback

1 Answer

up vote 0 down vote accepted

Found the solution by invoking .change() instead of .attr('onchange',...). This method works cross-browser.

To get rid of the fakepath string in Webkit et al I've also added the var filename... line to strip out that part of the file name.

$('.input[type=file]').change( function() {
    var filename = $(this).val().replace(/C:\\fakepath\\/i, '');
    $('#fakeupload').val( filename );
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.