jQuery Ajax - Get Elements Inner Text - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T01:59:39Zhttp://stackoverflow.com/feeds/question/1081791http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081791/jquery-ajax-get-elements-inner-text0jQuery Ajax - Get Elements Inner TextBen Shelock2009-07-04T08:23:24Z2009-07-04T08:25:30Z
<p>I have a PHP file which will return something like</p>
<pre><code><div id="title">Add Us On Myspace!</div><img id="image" src="http://i39.tinypic.com/67jybs.png" alt="Add Us On Myspace!" />
</code></pre>
<p>This is called using this...</p>
<pre><code>$.ajax({
url: "Tabnews.php",
success: function(tab1html){
$("#tabs-1").html(tab1html);
}
});
</code></pre>
<p>I need to define the contents of #title and #image in a variable in jQuery so I can write them else where.</p>
<p>How can I do this?</p>
http://stackoverflow.com/questions/1081791/jquery-ajax-get-elements-inner-text/1081795#10817953Answer by Paolo Bergantino for jQuery Ajax - Get Elements Inner TextPaolo Bergantino2009-07-04T08:25:30Z2009-07-04T08:25:30Z<p>This should do it:</p>
<pre><code>var $html = $(tab1html); // parse string into DOM structure
var $title = $html.filter('#title'); // keep the title
var $image = $html.filter('#image'); // keep the image
// add to whatever elements we want...
$('#my_element').append($title);
$('#my_other_element').append($image);
</code></pre>