I found the following code somewhere, but I am not understanding the code properly.
ArticleVote.submitVote(\'no\');return false;
Is Arti
Arti
You can achieve the above through Javascript, nothing to do with jQuery.
var ArticleVote= {}; ArticleVote.submitVote = function(voteResult) { console.log(voteResult); } function Vote(){ ArticleVote.submitVote('no'); return false; }