Edit in JSFiddle

$( document ).on( "click", ".term", function( e ) {
    e.preventDefault();
    $( "input" ).val( $( this ).text() );
    $( "button" ).trigger( "click" );
});

/*
[{"runtime": ["124 min"], "rating": 7.6, "genres": ["Comedy", "Romance", "Drama"], "rated": "UNRATED", "language": ["Mandarin", "French"], "title": "Yin shi nan nu", "filming_locations": "Chiang Kai-shek Memorial Hall Park, Taipei City, Taiwan", "poster": "http://ia.media-imdb.com/images/M/MV5BMTg5NTQxMjc5MV5BMl5BanBnXkFtZTcwMjYxODcxMQ@@._V1._SY317_CR4,0,214,317_.jpg", "imdb_url": "http://www.imdb.com/title/tt0111797/", "writers": ["Ang Lee", "James Schamus", "and 1 more credit"], "imdb_id": "tt0111797", "directors": ["Ang Lee"], "rating_count": 9335, "actors": ["Sihung Lung", "Yu-Wen Wang", "Chien-lien Wu", "Kuei-Mei Yang", "Sylvia Chang", "Winston Chao", "Chao-jung Chen", "Chit-Man Chan", "Yu Chen", "Ya-lei Kuei", "Chi-Der Hong", "Gin-Ming Hsu", "Huel-Yi Lin", "Shih-Jay Lin", "Chin-Cheng Lu"], "plot_simple": "A senior chef lives with his three grown daughters; the middle one finds her future plans affected by unexpected events and the life changes of the other household members.", "year": 1994, "country": ["Taiwan", "USA"], "type": "M", "release_date": 19940803, "also_known_as": ["Eat Drink Man Woman"]}]
*/

$( "button" ).on( "click", function( e ) {
    var searchTerm = $( "input" ).val();
    var url = "http://imdbapi.org/?title=" + encodeURI( searchTerm ) + "&type=jsonp&plot=simple&episode=1&limit=10&yg=0&mt=none&lang=en-US&offset=&aka=simple&release=simple&business=0&tech=0";
  
    $( ".help-block" ).html( function( index, html ) {
        return e.originalEvent ? html + ", " + "<a href='#' class='term'>" + searchTerm + "</a>" : html;
    });
    
    $.ajax({
        dataType: "jsonp",
        url: url,
        jsonpCallback: "imdbapi",
        success: function( data ) {
            console.log( data );
            var rows = [];
            $.each( data, function( index, result ) {
                var row = "<td>" + result.title + "</td>";
                row += "<td>" + result.rating + "</td>";
                row += "<td>" + result.year + "</td>";
                row = "<tr>" + row + "</tr>";
                rows.push( row );
            });
            $( "table" ).show().find( "tbody" ).html( rows.join( "" ) );
        }
    });
    e.preventDefault();
});

External resources loaded into this fiddle:

  <div class="navbar">
  <div class="navbar-inner">
    <a class="brand" href="#">Netflix</a>
  </div>
</div>
  
<form>
  <fieldset>
    <legend>Movie Search</legend>
    <label>Search Term</label>
    <input type="text" placeholder="Type movieā€¦">
        <span class="help-block">Example: <a class="term" href="#">Star Wars</a></span>
    <button type="submit" class="btn">Search</button>
  </fieldset>
</form>
    
<table class="table table-striped table-condensed" hidden>
  <caption>Search Results</caption>
  <thead>
    <tr>
      <th>Name</th>
      <th>Rating</th>
        <th>Released</th>
    </tr>
  </thead>
  <tbody>
  </tbody>
</table>
body { padding: 15px; }