/*SEARCH ADD ITEM APP RELATED*/
$('body').on('keyup', '.search-related-app', function(event) {
event.preventDefault();
var $this = $(this);
jQuery(this).attr('autocomplete','off');
var searchTerm = $(this).val();
if (searchTerm.length > 2){
$.ajax({
url : idescargar_Admin.url,
type : 'POST',
data: {
action : 'action_search_app_related_term',
term : searchTerm
},
success:function(data){
console.log(data);
$this.parent().next().find('ul').html(data);
}
});
} else {
$this.parent().next().find('ul').empty();
}
}).keyup();