vote up 0 vote down star

I'm want to implement thumbs up and down rating system in my web app using jquery. Please tell me some plug-in or code how to implement the thumbs up and down rating system in my website, please share links or resources.

Thanks

flag

2 Answers

vote up 7 vote down check

jQuery

This is nothing more than a roll-over effect, and an address that waits to update a database entry. It's not really jQuery. The "meat" of this would be your database and server-side scripting.

$("a.voteup").click(function(){
  $.get("updatescore.php", {"id":"112","score":"1"}, function(response){
    /* Do something with the response */
  });
});

That code may be a bit off, but it's close enough to convey the point. From there, you would have a server-side script waiting to receive this:

PHP / MySQL

IMPORTANT: Do not use as-is. Only for demonstration.
ASP.NET: I noticed from your past questions you are likely working within the .NET technologies. The process done here will still be faily similar. You'll handle the incoming request, require the user to be logged in, their score to be 1 or -1, and whatever else you wish.

  session_start();
  $userid = $_SESSION["userid"];

  $vote = $_GET["score"]; /* Limit to 1 or -1 */
  $article = $_GET["id"];

  /* Whatever is printed here will be the 'response' variable
     over in our jQuery callback function. Ideally, this function
     would only allow the vote if the following are true:
       1. User has not yet voted on this article
       2. Score is 1 or -1
       3. Voting is enabled on this article
       4. User is indeed logged in */
  print castVote($article, $vote, $userid);

?>
link|flag
1  
Indeed, this is a distinctly AJAX feature, most of the code being on the server side. – Noldorin Jun 26 at 15:52
The code your posted is very easy to hack... you put the score in the Javascript lol? Someone could just put 10000 in the javascript and have a boost of vote :P – Daok Jun 26 at 15:55
Daok, my code isn't for production. Of course it's not secure. It's meant to convey an idea, not a full solution. – Jonathan Sampson Jun 26 at 15:56
1  
As with all things, server-side validation would be a must. Note that he did say "do not use as-is". – Cal Jacobson Jun 26 at 15:57
1  
Prashant, As long as you check to see if the user has already voted, you should be safe. If they voted, and their previous vote is different than the one they're now sending, then update their record. If they haven't voted, insert a new record. If they've voted, and it's the same value, bake them a cake :) Just be sure to always check for previous activity. – Jonathan Sampson Jun 26 at 17:10
show 8 more comments
vote up 2 vote down

here is a style with thumbs up and down using JQuery with a Backend in PHP/MySQL.

Link to code (You can try the demo online and all the source code is there)

link|flag
This very good, thanks +1 for you :) – Prashant Jun 26 at 16:06

Your Answer

Get an OpenID
or
never shown

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