This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Find Users</h1> | |
<form action="find" method="get"> | |
<input type="text" placeholder="Enter Name" id="user-input"/> | |
</form> | |
<div id="user-selection" style="margin-top:10px;"></div> | |
<script> | |
$(function() { | |
var User = Backbone.Model.extend({}); |
NewerOlder