17 lines
403 B
JavaScript
17 lines
403 B
JavaScript
(function($, undefined) {
|
|
|
|
function search(query, callback)
|
|
{
|
|
$.get(BASE_URL + 'search', {'query':query}, callback);
|
|
}
|
|
|
|
$("#search").on('keypress', $.throttle(250, function(e) {
|
|
var query = encodeURIComponent($(this).val());
|
|
search(query, function(res) {
|
|
var template = $.templates("#show_list");
|
|
var html = template.render(res);
|
|
$('#series_list').html(html);
|
|
});
|
|
}));
|
|
|
|
}(jQuery)); |