Category Archives: Angular

A brief walk-through of the ng-options in AngularJS


Warning: Undefined variable $button in H:\root\home\stelco-001\www\collinscreative\wordpress\wp-content\plugins\facebook-share-new\facebookshare.php on line 631

Warning: Undefined variable $content in H:\root\home\stelco-001\www\collinscreative\wordpress\wp-content\plugins\facebook-share-new\facebookshare.php on line 636

Creating a drop down select using Angular. Some good examples: http://stackoverflow.com/questions/13047923/working-with-select-using-angularjss-ng-options http://plnkr.co/edit/DptvZuamWv9waFzI0Rcp?p=preview Source: A brief walk-through of the ng-options in AngularJS

AngularJS: API: ngAnimate


Warning: Undefined variable $button in H:\root\home\stelco-001\www\collinscreative\wordpress\wp-content\plugins\facebook-share-new\facebookshare.php on line 631

Warning: Undefined variable $content in H:\root\home\stelco-001\www\collinscreative\wordpress\wp-content\plugins\facebook-share-new\facebookshare.php on line 636

Native CSS animations built into Angular using ngAnimate 🙂 Example usage: http://stackoverflow.com/questions/15882649/how-to-delay-nganimate-in-ngrepeat Source: AngularJS: API: ngAnimate

The Many Ways To Use ngClass | Scotch


Warning: Undefined variable $button in H:\root\home\stelco-001\www\collinscreative\wordpress\wp-content\plugins\facebook-share-new\facebookshare.php on line 631

Warning: Undefined variable $content in H:\root\home\stelco-001\www\collinscreative\wordpress\wp-content\plugins\facebook-share-new\facebookshare.php on line 636

In depth guidance on ng-class Source: The Many Ways To Use ngClass | Scotch

$ngBootbox confirm example


Warning: Undefined variable $button in H:\root\home\stelco-001\www\collinscreative\wordpress\wp-content\plugins\facebook-share-new\facebookshare.php on line 631

Warning: Undefined variable $content in H:\root\home\stelco-001\www\collinscreative\wordpress\wp-content\plugins\facebook-share-new\facebookshare.php on line 636

Angular directive for creating a confirm yes/no dialog popup. Source: $ngBootbox confirm example

scroll to anchor from form select


Warning: Undefined variable $button in H:\root\home\stelco-001\www\collinscreative\wordpress\wp-content\plugins\facebook-share-new\facebookshare.php on line 631

Warning: Undefined variable $content in H:\root\home\stelco-001\www\collinscreative\wordpress\wp-content\plugins\facebook-share-new\facebookshare.php on line 636

Scroll to anchor from drop down form select. http://jsfiddle.net/mohamedyousef1980/99sm098e/ Can also use for each with dynamic ids as below: <div class=”row”> <div class=”container”> <h2>Select Cruise Line</h2> <div class=”jump-to-select”> <select class=”form-control” name=”listbox” id=”jumpto-listbox”> @foreach (var line in Model) {<option value=”#@line.Id”> @line.Name </option>} </select></div></div></div>   <script> // SC: scroll to anchor from drop down list $(‘#jumpto-listbox’) .on(‘change’,… Read More »