Skip to content

Instantly share code, notes, and snippets.

@quyen91
Created June 23, 2016 10:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save quyen91/a39d1494ea91098099a5059371d265fc to your computer and use it in GitHub Desktop.
Save quyen91/a39d1494ea91098099a5059371d265fc to your computer and use it in GitHub Desktop.
// view
<a href="" data-id="{{key}}" ng-click="addtocart($event)"> Add</a></td>
// Controller
$scope.addtocart = function(e){
var bookid = $(e.target).data('id');
alert(bookid);
// addtoCart.addtocart(bookid);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment