AngularJS Example:
by johnlindquist
HTML
<div ng-app="">
<input type="text" ng-model="foo">
<h1>{{foo}}</h1>
<div class="{{foo}}">
Wrap me with a foundation component
</div>
</div>
CSS
</style> <!-- Ugly Hack due to jsFiddle issue: http://goo.gl/BUfGZ -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/foundation/3.2.2/stylesheets/foundation.min.css">
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.min.js"></script>
<style>
JavaScript
"Switch to the HTML tab to see the code ;)"