Users in my site they can copy entire page from any another site (by Ctrl+A) and paste into special textarea to grab some usefull data from html.
But now I see some problem. When I wrap pasted html code with jQuery:
var page = $(html);
my browser (Chrome) start downloading all pictures that are present in this html (maybe not only pictures). This is bad for me because I use secure SSL connection and downloading pictures from another site strike out browser security lock icon.
Can I turn off picture downloading or if I can't - which one library I can use to parse html without downloading unnecessary content?