johhnnyboy wrote:
> Hello,
>
> Im looking for a jquery script that allowes removing comments (which
> are placed in divs) for the site with an animation and then removes it
> also from my database.
>
> Something similar to hyves comments system.
>
>   
that's a bunch of things working together...
jquery would only be a small part of it.

you'd need to start with a database definition of the comments tables.
your comments-page output would identify each comment with 
id='db_comment_id', so that jquery can remove it with an animation 
(which animation, exactly?).
after removing it from the DOM, jquery would call a php script that 
removes db_comment_id from the database.

that's the gist of it, but you need to post the db definition if you 
want help with the php scripts for display and removal.

Reply via email to