JSFiddle - React, Tailwind, and code Playground

by Sebastian Kay

HTML

<h2>
title
</h2>
<div id="here">

</div>

JavaScript

$.ajax({ // start before dom is ready
		url: 'http://home.jejaju.com/play/htmlAJAX/someUrl.html',
		type: 'get',
		dataType: 'html',
		success: function(data) {
			var $data = $(data),
				srvo2 = $data.filter('.section:has([name="SRVO-002"])').children().slice(1)
			console.log($data,srvo2)
			$(function() { // wait until dom is ready to set the div
				$('div').html(srvo2)
			})
		}
	});