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.