first commit

This commit is contained in:
2025-03-12 17:06:23 +01:00
commit 2241f7131f
13185 changed files with 1692479 additions and 0 deletions

19
web/js/stSearch.js Normal file
View File

@@ -0,0 +1,19 @@
jQuery(function ($)
{
var stSearch_page = 1;
$(document).ready(function() {
$("#st_search_more_button").click( function() {
var query = $("#query").val();
$.ajax({
url: "/stNewSearchFrontend/newSearch",
cache: false,
data: "query="+query+"&page="+stSearch_page,
success: function (html) {
$("#product_other").append(html);
stSearch_page++;
if (html == "") $("#more_button").hide();
}
});
});
});
});