Skip to content

Instantly share code, notes, and snippets.

@superchris
Created May 4, 2015 21:46
Show Gist options
  • Save superchris/98e00572e80fabeff38a to your computer and use it in GitHub Desktop.
Save superchris/98e00572e80fabeff38a to your computer and use it in GitHub Desktop.
JS Bin Show/Hide example // source http://jsbin.com/xibez
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta name="description" content="Show/Hide example" />
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet" type="text/css" />
<script src="http://getbootstrap.com/2.3.2/assets/js/bootstrap.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.12/angular.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body ng-controller="ShowHideCtrl as showHide">
<label>Display? <input type="checkbox" ng-model="showHide.displayMe" /></label>
<div ng-show="showHide.displayMe">Here I am!</div>
<script id="jsbin-javascript">
var app = angular.module("app", []);
app.controller("ShowHideCtrl", function() {
this.displayMe = true;
});
</script>
<script id="jsbin-source-javascript" type="text/javascript">var app = angular.module("app", []);
app.controller("ShowHideCtrl", function() {
this.displayMe = true;
});
</script></body>
</html>
var app = angular.module("app", []);
app.controller("ShowHideCtrl", function() {
this.displayMe = true;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment