show/hide this revision's text 2 added 29 characters in body; edited tags

I have a PHP file which will return something like

<div id="title">Add Us On Myspace!</div><img id="image" src="http://i39.tinypic.com/67jybs.png" alt="Add Us On Myspace!" />

This is called using this...

$.ajax({
    url: "Tabnews.php",
    success: function(tab1html){
            $("#tabs-1").html(tab1html);
    }
});

I need to define the contents of #title and #image in a variable in jQuery so I can write them else where.

How can I do this?

show/hide this revision's text 1

jQuery Ajax - Get Elements Inner Text

I have a PHP file which will return something like

<div id="title">Add Us On Myspace!</div><img id="image" src="http://i39.tinypic.com/67jybs.png" alt="Add Us On Myspace!" />

This is called using this...

$.ajax({

url: "Tabnews.php", success: function(tab1html){ $("#tabs-1").html(tab1html); } });

I need to define the contents of #title and #image in a variable in jQuery so I can write them else where.

How can I do this?