Jottyfan
2022-10-09 20:36:08 +02:00
parent 3b33368374
commit a3df68e4f7
9 changed files with 206 additions and 5 deletions

View File

@ -0,0 +1,9 @@
class MyAjax {
constructor(url) {
this.url = url;
}
call(destdivid, needle) {
$("[id='" + destdivid + "']").load(this.url + '?needle=' + encodeURI(needle));
}
}