I have a file upload input and when I click the browse button and select the file, I want the filename and extension to appear in two input text boxes (see code sample).
It works correctly with the extension, but the filename also shows the path which gives me the fakepath warning.
I understand why, but what's a good way to do this and just get the filename into that box. I don't need the path.
function getoutput(){
outputfile.value=inputfile.value.split('.')[0];
extension.value=inputfile.value.split('.')[1];}
<input id='inputfile' type='file' name='inputfile' onChange='getoutput()'><br>
Output Filename <input id='outputfile' type='text' name='outputfile'><br>
Extension <input id='extension' type='text' name='extension'>