Movie Content Search
by mynameisdonald
HTML
<input id="movie" type="text" /><button>Search</button>
JavaScript
$(document).ready(function() {
var url = 'http://api.themoviedb.org/3/',
mode = 'movie/',
input,
movieName,
key = '?api_key=470fd2ec8853e25d2f8d86f685d2270e';
$('button').click(function() {
var input = $('#movie').val(),
movieName = encodeURI(input);
$.ajax({
type: 'GET',
url: url + mode + input + key,
async: false,
jsonpCallback: 'testing',
contentType: 'application/json',
dataType: 'jsonp',
success: function(json) {
console.dir(json);
},
error: function(e) {
console.log(e.message);
}
});
});
});