JSFiddle - React, Tailwind, and code Playground
HTML
<table id="table"></table>
JavaScript
$.getJSON("http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D%22http%3A%2F%2Fwww.missoulaavalanche.org%2Fcurrent-advisory%2F%22%20and%20xpath%3D'%2F%2Fdiv%5B%40id%3D%22content%22%5D%2Fdiv'&format=json",
function(data) {console.log(data)
var div = data.query.results.div[0],
img = div.div[0].a.img.src;
$('#table').append('<li>'+div.h1+'</li>');
$('#table').append('<li>'+img+'</li>');
$('#table').listview('refresh');
}
);