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?
|
I have a When i'm using: It alerts an empty dialog... What am i doing wrong? |
||||
|
|
You can read it, but you can't set it. Even then, the value will likely be mangled with something like |
|||||
|
That'll get you the file selected. However, you can't set the value yourself. |
|||
|
|
|
You can get it by using document.getElementById();
will give the value of file,but it gives with fakepath as follows
|
|||
|
|
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
I hope this helps a bit! |
|||
|
|
|
You can't set the This example shows that it really works: http://jsfiddle.net/marcosfromero/7bUba/ |
|||
|
|
|
Remove value="123" thing will look great. Then try:
Still one issue. You will get one c:\fakepath\yourfile.extension. |
||||