javascript - Are there any Ajax(Prototype or JQuery Plugin) sample for stackoverflow-like voting? -
Any good AJAX samples for applying voting, similar to above and down buttons on Stackworflow dot com
You create a page to vote like yoursite.com/vote?postid=1234&direction=up, in the database Saves the vote. Then you create buttons or links and when a user clicks on the link, an Ajax request:
jquery:
$ Post ("vote", {postid: The_id, direction: "up"})
Comments
Post a Comment