Retrieving the Data Form External Client URLs

I want to get type data (name, some description) from any external URL that the user enters.

Like facebook, when we copy an external URL, it extracts some information from that URL.

Is there a way to make this clientide some jquery plugin or something ...?

EDIT: As in facebook status, I copy "www.stackoverflow.com", it gets the name and additional information from it; I need to have a completely similar thing. Isn't there a jquery plugin that can get similar basic information from url ...

+5
source share
3 answers

jQuery ajax

jQuery.ajax( url [, settings] )
jQuery.get( url [, data] [, success(data, textStatus, jqXHR)] [, dataType] )

http://api.jquery.com/jQuery.get/

http://api.jquery.com/jQuery.ajax/

+2

Html -, WebClient.DownloadString:

WebClient = WebClient();
String htmlCode = client.DownloadString( "http://videoonfacebook.com" );

, . , TITLE, DESC .. .

Gourav

0

if you want to just display something, you can use the element iframeby dynamically setting its source using jQuery.

0
source

All Articles