Is there any Ajax sample (Prototype or JQuery Plugin) for voting like stackoverflow?

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

+2
source share
2 answers

You create a voting page, such as yoursite.com/vote?postid=1234&direction=up, which stores the voting in the database. Then you create buttons or links for voting and execute an Ajax request when the user clicks on the link:

JQuery

$.post("vote", { postid: the_id, direction: "up" })
+2
source

Source: https://habr.com/ru/post/1741606/


All Articles