I have made a file but somehow JSON not decode the exact HTML tag:
Demo:
http://mydevfactory.com/~appfactory/ujjal/test/#/app/features
CLICK HERE GET MY DETAILS:
Script:
.controller('PlaylistsCtrl', function($scope, $ionicModal, $timeout, $ionicSlideBoxDelegate, $ionicHistory, $http, $sce) {
$scope.getData = function() {
$http.get("http://addaonline.in/json-page-content/?id=544")
.success(function (response) { $scope.names = $sce.trustAsHtml(response.content);
return $sce.trustAsHtml(response.content);
})
}
});