Skip to content

Instantly share code, notes, and snippets.

@jbinto
Created January 13, 2016 07:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbinto/d104c3a8fb325171f6fc to your computer and use it in GitHub Desktop.
Save jbinto/d104c3a8fb325171f6fc to your computer and use it in GitHub Desktop.
Get title of remote (HTML) URL via jQuery
const getTitle = (url, callback) => {
$.get(`https://crossorigin.me/${url}`, (data) => {
const html = $.parseHTML(data);
const bogus = $('<bogus>').append(html);
const title = bogus.find('title').text();
callback(title);
});
};
var urls = [
'https://medium.com/@unakravets/the-sad-state-of-entitled-web-developers-e4f314764dd',
'http://frontendnewsletter.com/issues/1#start',
'https://groups.google.com/forum/#!topic/v8-users/PInzACvS5I4',
'https://www.youtube.com/watch?v=9kJVYpOqcVU',
]
// This comes out in a random order.
// We need some sort of async version of map.
// Perhaps Promise.all()?
urls.map((url) => { getTitle(url, console.log); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment