Jquery用のjqueryプラグインクイックフィルターをダウンロードし、ajax投稿結果に使用しようとしましたが、機能しません。誰かが何が間違っているのか、それをどのように修正するのか考えていますか?
jqueryプラグインへの直接リンク: https ://github.com/bdelespierre/jquery-quickfilter/blob/master/jquery.quickfilter-0.0.1.js
jqueryリクエストは次のようになります。
$('#cam').change(function(e){
serializedData = $("#thisid").serialize() ;
$.ajax({
url: "/results.php",
type: "post",
data: serializedData,
success: function(response, textStatus, jqXHR){
$('#cam-list').html(response);
}
});
});