JSFiddle - React, Tailwind, and code Playground

by maxx0r

JavaScript

$.ajax({
    url: 'http://www.allaboutphones.nl/nieuws/21470/intel-ceo-gaat-met-pensioen.html',
    type: 'GET',
    error: function(res) {
        console.log(res);
    },
    success: function(res) {
        var headline = $(res.responseText).find('a.tsh').text();
        alert(headline);
    }
});