Hey guys may i know how can i create a up/down voting function in angularjs ? i want to make it to something similar to stackoverflow or reddit. i found a Jquery plugin https:/
It should be simple to make something like this. Here's a simple example:
JS:
var app = angular.module('voteApp', []); app.controller('MainCtrl', function ($scope) { $scope.upVote = function () { $scope.vote++; } $scope.downVote = function () { $scope.vote--; } $scope.vote = 0; });
Fiddle.