JSFiddle - React, Tailwind, and code Playground

HTML

<p id="someElement">rdrd</p>
<p id="anotherElement">ededsesw</p>

JavaScript

var xml;
$.get("http://straight2jackie.blogspot.com//feeds/posts/default?alt=rss", function(data) {
    xml = data;
});,
    xmlDoc = $.parseXML( xml ),
    $xml = $( xmlDoc ),
    $title = $xml.find( "title" );
 
/* append "RSS Title" to #someElement */
$( "#someElement" ).append( $title.text() );
 
/* change the title to "XML Title" */
$title.text( "XML Title" );
 
/* append "XML Title" to #anotherElement */
$( "#anotherElement" ).append( $title.text() );