JSFiddle - React, Tailwind, and code Playground

by nickcoxdotme

HTML

<input id="movie" type="text" /><button>Search</button>

JavaScript

$(document).ready(function() {
    var url = 'http://api.themoviedb.org/3/',
        mode = 'search/',
        input,
        movieName,
        key = '?api_key=470fd2ec8853e25d2f8d86f685d2270e';

    $('button').click(function() {
        var input = $('#movie').val(),
            movieName = encodeURI(input);
        $.ajax({
            url: url + mode + movieName + key, 
            dataType: 'jsonp',
            success: function(data) {
             console.log(data);
            }
        });
    });
});