I am getting image from clipboard and putting in img tag.
So when user click on a button, image from the clipboard is copied into img tag in one div tag. So I have list of img tags within one div.
I want to save that images on server, So I have to send that images to server side.
How can I send that images on server side ?
Please guide. Thanks.
=== Code Sample ===
<div id="imageContainer">
<img src="..."/>
<img src="..."/>
<img src="..."/>
</div>
this is the structure and want to upload this images on server.
<img src="..."in the example, from where do those sources come from? The user's clipboard? Also, do you want to send the image right when it's inserted in the page or later on through clicking a button? – Fabrício Matté Jul 5 '12 at 9:24