[jQuery] - część funkcji nie działa

$(document).ready(function(){    $(".edit_text").click(function(){        $this = $(this);        $this.replaceWith(""+ $this.text() +"");        $(".up_news").append("");    });[/code]

To z [b]appendem[/b] nie działa. Wie ktoś może dlaczego ? Mnie wydaje się, że nie znajduje klasy [i].up_news[/i] i dlatego nie dodaje. Ale próbowałem, też tak:




[code=php]$(document).ready(function(){    $(".edit_text").click(function(){        $this = $(this);        $this.replaceWith(""+ $this.text() +"");        $this.append("");    });

I też nie działa ;/

Pozdrawiam

http://api.jquery.com/live/

$(document).ready(function(){    $(".edit_text").click(function(){        $this = $(this);        $this.replaceWith(""+ $this.text() +"");        $(".up_news").after("");    });[/code]

Znalazłem [i].after[/i] i się udało :D