A Simple approach would be like this:
Suppose you have a textarea where user type in their link.
Step1: Use onchange event of textarea to know if somebody typed in something.
Step2: Use Jquery to make sure if it is Url . Code will be something like this.
some regex to extract the correct url from textarea like this
var regex=/Your Regex to know url/
var url= regex.mathc($('#textareaid').val()).
Step3: Now you got the url . Send it to server using.
$.ajax({
url:submit.php
type:'POST'
success:// do your dom mainpulation code here by geting the data from server.
});
Step 4: In your php code make httpwebrequest to get the contents html of that url. And you can use some utility to extract the images and headers out of html you got. Send it as a response to the ajax request you made.
Step 5: you are done. On the success of ajax request you append the data you sent from server to your DOM.