I want to be able to post all the information of the selected list link onto the page

I want to be able to post all the information of the selected list link onto the page

This is the format of the json file i am using
  1.     {
  2.         "year": 2013,
  3.         "title": "Rush",
  4.         "info": {
  5.             "directors": ["Ron Howard"],
  6.             "release_date": "2013-09-02T00:00:00Z",
  7.             "rating": 8.3,
  8.             "genres": [
  9.                 "Action",
  10.                 "Biography",
  11.                 "Drama",
  12.                 "Sport"
  13.             ],
  14.             "image": "https://ia.media-imdb.com/images/M/MV5BMTQyMDE0MTY0OV5BMl5BanBnXkFtZTcwMjI2OTI0OQ@@._V1_SX400_.jpg",
  15.             "plot": "A re-creation of the merciless 1970s rivalry between Formula One rivals James Hunt and Niki Lauda.",
  16.             "rank": 2,
  17.             "running_time_secs": 7380,
  18.             "actors": [
  19.                 "Daniel Bruhl",
  20.                 "Chris Hemsworth",
  21.                 "Olivia Wilde"
  22.             ]
  23.         }
    
i want to post all the information of the selected link in the drop down list onto the html page. only certain data is shown on the drop-down list but i want all the information to be shown on the page once the user clicks on the specific link.
  1. <!DOCTYPE html>
  2. <html>
  3.  <head>

  4.   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
  5.   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
  6.   <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  7.   <style>
  8.   #result {
  9.    position: absolute;
  10.    width: 100%;
  11.    max-width:870px;
  12.    cursor: pointer;
  13.    overflow-y: auto;
  14.    max-height: 400px;
  15.    box-sizing: border-box;
  16.    z-index: 1001;
  17.   }
  18.   .link-class:hover{
  19.    background-color:#f1f1f1;
  20.   }
  21.   </style>
  22.  </head>
  23.  <body>
  24.   <br /><br />
  25.   <div class="container" style="width:900px;">
  26.    <h2 align="center">Search for a Movie</h2>
  27.    <h3 align="center">Movie Data</h3>
  28.    <br /><br />
  29.    <div align="center">
  30.     <input type="text" title="search" id="search" placeholder="Search Movie Details" class="form-control" />
  31.    </div>
  32.    <ul  class="list-group" id="result"> </ul>
  33. <p>
  34. </p>
  35.    <br />

  36.   </div>
  37.   <script>
  38.   $(document).ready(function(){
  39.    $.ajaxSetup({ cache: false });
  40.    $('#search').keyup(function(){
  41.     $('#result').html('');
  42.     $('#state').val('');

  43.     var searchField = $('#search').val();
  44.     var expression = new RegExp(searchField, "i");
  45.     $.getJSON('MovieData.html', function(data) {
  46.      $.each(data, function(key, value){
  47.       if (value.title.search(expression) != -1)
  48.       {

  49.       $('#result').append('<li class="list-group-item link-class"><img src="'+value.image+'" height="203" width="144" class="img-thumbnail" /> '+value.title+' | <span class="text-muted">'+value.info.genres+'</span></li>');
  50.       }
  51.      });
  52.     });
  53.    });

  54. $(document).ready(function(){
  55.    $('#result').on('click', 'li', function() {
  56.      var $this = $(this);
  57.      var $alias = $this.data('alias');
  58.      $('.active').removeClass('active');
  59.      $this.toggleClass('active')

  60.      myfuncation($this, $alias)
  61.    })
  62.    function myfuncation($this, $alias){
  63.      console.log($this.text());
  64.      console.log($alias);
  65.    }
  66. });
  67.    });
  68.   </script>


  69.  </body>
  70. </html>
  71. This is what the list looks like and i want to show all the details of the movie once it has been clicked.
  72. Any help will be greatly appreciated