In HTML input file type attribute, how to make file path right justified, which I am getting by browsing?
<input type=file id='id' class='file' />
$('#id').css('text-align','right')
is not working.
I tried
$('#id').attr('style','text-align:right');
But no use. If I use class instead of id then also it is not working
you cant modify the style of the input file , but you can use other methods to style it indirectly..
Try this one out.
http://www.quirksmode.org/dom/inputfile.html
http://www.kavoir.com/2009/02/styling-file-upload-select-input-control-input-typefile.html