vote up 2 vote down star
1

any good ajax samples for implementing voting similar to the up and down buttons of stackoverflow.com

flag

19% accept rate

1 Answer

vote up 2 vote down

You create a page for voting like yoursite.com/vote?postid=1234&direction=up that saves the vote in the database. Then you create buttons or links for voting and perform an Ajax request when the user clicks the link:

jquery:

$.post("vote", { postid: the_id, direction: "up" })
link|flag
any idea how to do that in GSP pages? – GrailsNewbie May 4 at 8:59
I'm sorry, I have never used GSP (I didn't even know it existed). – Jules May 4 at 16:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.