Resolved: The fixed Fiddle thanks to @Abdallah Arffak
I would like to remove the ../../../ from a chosen file to upload and instead simply show the file name such as index.html or whatnot.
JSFiddle: http://jsfiddle.net/5u5ovxdL/
HTML
<div id="file">Chose file</div>
<input type="file" name="file" />
JQuery
var wrapper = $('<div/>').css({height:0,width:0,'overflow':'hidden'});
var fileInput = $(':file').wrap(wrapper);
fileInput.change(function(){
$this = $(this);
$('#file').text($this.val());
})
$('#file').click(function(){
fileInput.click();
}).show();