I was trying to implement facebook like button using iframe in my AngularJS website. But facebook button is not loading.
//html portion
<div ng-controller="FBCtrl">
<iframe ng-src="{{likeURL}}"></iframe>
</div>
//controller portion
.controller('FBCtrl',['$scope', function($scope){
$scope.likeURL = 'http://www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2Fflyerbd&width&layout=standard&action=like&show_faces=true&share=true&height=80';
}]);
Basically i want a simplified way to use facebook like button in my website.
Thanks in advance.