The largest Interview Solution Library on the web


« Previous | 1 | 2 | 3 | Next »
Learn AngularJS - Instant Search
Search Your Ride Location:
  • {{i.title}}

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Learn AngularJS - Instant Search</title>
<!-- The main CSS file -->
<link href="style.css" rel="stylesheet" />
<!--[if lt IE 9]>
<![endif]-->
</head>
<!-- Initialize a new AngularJS app and associate it with a module named "instantSearch"-->
<body ng-app="instantSearch" ng-controller="InstantSearchController">
<div class="bar">
<!-- Create a binding between the searchString model and the text field -->
Search Your Ride Location:<input type="text" ng-model="searchString" placeholder="Enter your search terms" />
</div>
<ul>
<!-- Render a li element for every entry in the items array. Notice
the custom search filter "searchFor". It takes the value of the
searchString model as an argument.
-->
<li ng-repeat="i in items | searchFor:searchString">
<a href="{{i.url}}"><img ng-src="{{i.image}}" /></a>
<p>{{i.title}}</p>
</li>
</ul>
<!-- Include AngularJS from Google's CDN -->
<script src="script.js"></script>
</body>
</html>
« Previous | 1 | 2 | 3 | Next »


copyright © 2014 - all rights riserved by javatechnologycenter.com