I want to get the results from this page, IEEExplore, and extract information so I can display certain information on my own webpage. Is there a possibility in Jquery or javascript? Can i get the information in a JSON format or is that not the way to do it?
I was thinking of something like this:
$.get(url,function( data ) {
alert( "Data Loaded: " + data.result );
});
With url being the IEEExplore url.