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
- <div id="searcher" class="flexcroll">
- <a class="close">×</a>
- <form id="searchput" method="get">
- <input type="search" value="" placeholder="Search..." onkeyup="search_movie(this)" class="co" />
- </form>
- <div class="search_box"></div>
- </div>
jQuery
- function search_movie(elem) {
- var str = $(elem).attr('value');
- $.post('/scripts/search.php', {
- search: str
- }, function(data) {
- $('.search_box').html(data)
- })
- }
What i need to change to make search work?
Thanks a lot!