jQuery Ajax - Get Elements Inner Text - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T01:59:39Z http://stackoverflow.com/feeds/question/1081791 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081791/jquery-ajax-get-elements-inner-text 0 jQuery Ajax - Get Elements Inner Text Ben Shelock 2009-07-04T08:23:24Z 2009-07-04T08:25:30Z <p>I have a PHP file which will return something like</p> <pre><code>&lt;div id="title"&gt;Add Us On Myspace!&lt;/div&gt;&lt;img id="image" src="http://i39.tinypic.com/67jybs.png" alt="Add Us On Myspace!" /&gt; </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#1081795 3 Answer by Paolo Bergantino for jQuery Ajax - Get Elements Inner Text Paolo Bergantino 2009-07-04T08:25:30Z 2009-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>