I have following click binding with AngularJS which is working fine :
data-ng-click="vm.newCard()"
newCard() :
$location.path("xxxx/card/0");
which is navigating correctly.
Now, I have following click binding with Jquery
$(".responsiveTableBody").off("click", ".responsiveRow", vm.newCard);
click event is executing but it not route to URL
Any ideas on how to route?