Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a <input type="file" id="uploadPicture" value="123">

When i'm using: alert($("#uploadPicture").val());

It alerts an empty dialog...

What am i doing wrong?

share|improve this question
when are you calling that alert? – Thomas Shields May 5 '11 at 19:55

6 Answers

up vote 9 down vote accepted

You can read it, but you can't set it. value="123" will be ignored, so it won't have a value until you click on it and pick a file.

Even then, the value will likely be mangled with something like c:\fakepath\ to keep the details of the user's filesystem private.

share|improve this answer
2  
Right -- browsers treat this differently too, for instance firefox will only show the filename after selecting a file, whereas some may show the full path. There is nothing you can really do with this client side.. what are you trying to accomplish OP? – Atticus May 5 '11 at 20:02
$('input[type=file]').val()

That'll get you the file selected.

However, you can't set the value yourself.

share|improve this answer

You can get it by using document.getElementById();

var fileVal=document.getElementById("some Id");
alert(fileVal.value);

will give the value of file,but it gives with fakepath as follows

c:\fakepath\filename
share|improve this answer
I got the full path mate...and used regex from the path to get filename alone.. – ashwinsakthi Nov 27 '12 at 13:50

There could be a few things going on here. My first guess is that your code isn't within the $(document).ready() function, so the input has no value initially. Try

$(document).ready(function(){
  alert($("#uploadPicture").val());
});

I hope this helps a bit!

share|improve this answer
it acctually inside it :) – Danpe May 5 '11 at 20:06

You can't set the value of a file input in the markup, like you did with value="123".

This example shows that it really works: http://jsfiddle.net/marcosfromero/7bUba/

share|improve this answer

Remove value="123" thing will look great. Then try:

$("file_selector").val();

Still one issue. You will get one c:\fakepath\yourfile.extension.

share|improve this answer
Hi and welcome to Stackoverflow. Would you mind expanding this answer a little bit more? – slm May 4 at 11:46
I tried above to get value like $("file_selector").val(); but i m getting c:\fakepath\yourfile.extension. Then using what i will be able to read value using jquery. – Parveen May 4 at 13:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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