[jQuery] Jquery can show Images from file:///C:?

[jQuery] Jquery can show Images from file:///C:?

Hi folks
What I am trying is show an image into my browser with this tag
<img width="50" height="50" src="file:///C:/Users/example.JPG"/> into my browser.
Is it possible? or is a security lock from browsers?
I am using $.post()
So I could send the path that user choice C:/Users/example.JPG to my php and return <img width="50" height="50" src="file:///C:/Users/example.JPG"/>
But isnt working because browsers cant show this tag <img width="50" height="50" src="file:///C:/Users/example.JPG"/>
I can upload the file to webserver I know but will be more fast and I can save some bandwidth traffic if I could do this. And avoid malicious users consume my bandwidth traffic.
So I am trying use AJAX to simulate Upload Ajax? and when forms is already send images normaly (without ajax).
So Jquery can show Images from file:///C:? or something like this?
Regards
Mario