I have created a bookmarklet that extracts all images from a page when clicked.
var imgs = $('img');
for(var i=0; i < imgs.length; i++) {
console.log(imgs[i].src);
}
The next time will be to save these images to the server so that the user can access these images on my website.
After digging through the scripts used by pinterest etc, they seem to use an iframe, but I cant figure out what the iframe is for, as its an empty HTML doc. How can the iframe, or anything else, be used to submit images from the current website to my web site?