Live Search does not work with latest jquery version

Live Search does not work with latest jquery version

Hello there,

Long time ago i created simple live search. It works very well with jQuery v1.8.3, but does not work with jQuery 3.1.1. 

HTML
  1.              <div id="searcher" class="flexcroll">
  2.                   <a class="close">×</a>
  3.                   <form id="searchput" method="get">
  4.                      <input type="search" value="" placeholder="Search..." onkeyup="search_movie(this)" class="co" />
  5.                   </form>
  6.                   <div class="search_box"></div>
  7.                </div>

jQuery
  1. function search_movie(elem) {
  2.     var str = $(elem).attr('value');
  3.     $.post('/scripts/search.php', {
  4.         search: str
  5.     }, function(data) {
  6.         $('.search_box').html(data)
  7.     })
  8. }
What i need to change to make search work?

Thanks a lot!