A Backbone.js Playground for Mediamorph

A simple playground for interview

HTML

<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.3.3/backbone-min.js"></script>
<!--GOALS-->
<!--1. Search over the movies and display the results that match. -->
<!--2. Style search form with bootstrap adding a search icon in the text box. -->

<div id="searchContainer"></div>
<script type="text/template" id="searchTemplate">
<div id="searchForm">
    <input type="text" name="searchText"/>
    <button id="search">Search</button>
</div>
</script>

CSS

/* Latest compiled and minified CSS included as External Resource*/

/* Optional theme */
@import url('//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css');

body {
    margin: 10px;
}

JavaScript

var dataset = {
    "data": [
	{
		"Title": "Frances Ha",
		"Year": "2012",
		"Rated": "R",
		"Released": "20 Jun 2013",
		"Runtime": "86 min",
		"Genre": "Comedy, Drama",
		"Director": "Noah Baumbach",
		"Writer": "Noah Baumbach, Greta Gerwig",
		"Actors": "Greta Gerwig, Mickey Sumner, Michael Esper, Adam Driver",
		"Language": "English",
		"Country": "USA",
		"Awards": "Nominated for 1 Golden Globe. Another 9 wins & 32 nominations.",
		"Poster": "http://ia.media-imdb.com/images/M/MV5BOTY0NDQ2NzQ2N15BMl5BanBnXkFtZTcwMTU0OTkwOQ@@._V1_SX300.jpg",
		"Metascore": "82",
		"imdbRating": "7.4",
		"imdbVotes": "34,743",
		"imdbID": "tt2347569",
		"Type": "movie",
		"Response": "True"
	},
	{
		"Title": "Har Dil Jo Pyar Karega...",
		"Year": "2000",
		"Rated": "N/A",
		"Released": "24 Jul 2000",
		"Runtime": "173 min",
		"Genre": "Drama, Musical, Romance",
		"Director": "Raj Kanwar",
		"Writer": "Rumi Jaffery (dialogue), Rumi Jaffery (screenplay)",
		"Actors": "Salman Khan, Preity Zinta, Rani Mukerji, Shah Rukh Khan",
		"Language": "Hindi",
		"Country": "India",
		"Awards": "1 win & 3 nominations.",
		"Poster": "http://ia.media-imdb.com/images/M/MV5BMjY1NzQ4NzM2OF5BMl5BanBnXkFtZTcwMzY1ODgzMQ@@._V1_SX300.jpg",
		"Metascore": "N/A",
		"imdbRating": "5.1",
		"imdbVotes": "2,597",
		"imdbID": "tt0250415",
		"Type": "movie",
		"Response": "True"
	},
	{
		"Title": "Mary",
		"Year": "2005",
		"Rated": "NOT RATED",
		"Released": "11 Nov 2005",
		"Runtime": "83 min",
		"Genre": "Drama, Thriller",
		"Director": "Abel Ferrara",
		"Writer": "Abel Ferrara, Mario Isabella, Simone Lageoles, Scott Pardo (screenplay)",
		"Actors": "Juliette Binoche, Forest Whitaker, Matthew Modine, Heather Graham",
		"Language": "English, Hebrew, French",
		"Country": "Italy, France, USA",
		"Awards": "4 wins & 1 nomination.",
		"Poster": "http://ia.media-imdb.com/images/M/MV5BMjEyNDM3NTU0NV5BMl5BanBnXkFtZTcwNDgyOTI0MQ@@._V1_SX300.jpg",
		"Metascore": "N/A",
		"imdbRating": "5.9",
		"imdbVotes":...