Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app="plunker">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.1/angular.min.js"></script>
  <script data-require="angular.js@*" data-semver="1.3.0-beta.5" src="https://code.angularjs.org/1.3.0-beta.5/angular.js"></script>
  <script src="https://code.angularjs.org/1.3.0-beta.11/angular-sanitize.js"></script>
  <script src="http://angular-ui.github.io/ui-router/release/angular-ui-router.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>
<body>
  <h1>Hello Plunker!</h1>
  <div ng-controller="MainCtrl">
    <!-- ui-sref is a directive from ui-router - doesn't render as link as ui-router is not included but if you inspect the element you can still see the attributes -->
    <a ui-sref="home.test">Test ui-sref</a>
   
    <hr/>
    <li>link ng-html-bind to-trusted
    
 
    <p ng-bind-html="to_trusted(message)"></p>
    <hr/>
    
    </ul>
  </div>
</body>
</html>
 
var app = angular.module('plunker', ['ngSanitize','ui.router']);
app.controller('MainCtrl', function($scope, $sanitize,$sce) {
  $scope.message = 'link here <a ui-sref="home.test"> click me </a>';
  
  $scope.to_trusted = function(html_code) {
    return $sce.trustAsHtml(html_code);
}
  
});
app.filter('safe', function($sce) {
            return function(val) {
                return $sce.trustAsHtml(val);
                //return $sce.trustAsUrl(val);
                //return $sce.trustAsResourceUrl(val);
            };
    });
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers