<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="sampleApp">
<div ng-controller="sampleController">
control with static ng-bind : <input type='text' ng-bind='{{test}}' id='txtInput' />
<br/>
control with static ng-model : <input type='text' ng-model='test' id='txtInput' />
<br />
control with dynamic (ng-model) : <input type='text' id='txtInput' />
<br /> Span with static (ng-bind) : <span ng-bind='test'></span>
<br />
Span with static (ng-model) : <span ng-model='test'></span>
<br />Span with static expression : <span>{{test}}</span>
<br />Span with Dynamic : <span id='spanTest'></span>
<br />
<button id='btnClick' ng-click='testSample()'>click</button>
</div>
</div>
JavaScript
angular.module("sampleApp", [])
.controller("sampleController", function ($scope, $compile) {
$scope.test = 'hai this is test content';
$scope.testSample = function () {
var elmSpan = $('#spanTest');
$(elmSpan).attr('ng-bind', 'test');
$compile(elmSpan)($scope);
var elmTextbox = $('#txtInput');
$(elmTextbox).attr('ng-model', 'test');
$compile(elmTextbox)($scope);
};
});
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.