Hello everybody, i have this code:
$.ajax({
type: "GET",
url: "latest-tweet.php",
cache: false,
success: function(html){
}
});
And my latest-tweet.php returns:
user->name?>
text?>
I wanna get the text's div.detail that de var html bring to compare..
ho
Thanks for your reply Rodrigo.
On Sep 21, 10:57 am, Rodrigo Sebastián Alfonso
wrote:
> let's say you have "World" in data, you have to do this:
>
> $("div").find("p").html($("div").find("p").html() + data);
>
> so your html would look like:
>
> HelloWorld
>
>
>
> On Mon, Sep 21, 2009 at 11:49 AM
let's say you have "World" in data, you have to do this:
$("div").find("p").html($("div").find("p").html() + data);
so your html would look like:
HelloWorld
On Mon, Sep 21, 2009 at 11:49 AM, Frederik wrote:
>
> Anyone has any idea ?
>
> I have tried this way.
> $("Hello").find("p").appendTo(
Anyone has any idea ?
I have tried this way.
$("Hello").find("p").appendTo("#content"); //
works... it append Hello
I have tried it with all the content of data parameter
$(data).appendTo("#content"); //works - add all the DOM received in
Data
The problem is when I try to extract a part of da
Wrong syntax? Please explain.
I try to use this instruction found on http://www.visualjquery.com/:
jQuery(expression, context)
> The core functionality of jQuery centers around this function. Everything in
> jQuery is based upon this, or uses this in some way. The most basic use of
> this fun
this :
var elem = $('#section_news', data);
is not the right syntax.
6 matches
Mail list logo