first commit

This commit is contained in:
aschwarz
2022-11-28 10:27:30 +01:00
commit 9015dd2102
2720 changed files with 605111 additions and 0 deletions

21
jquery/prx_search.js vendored Executable file
View File

@ -0,0 +1,21 @@
$(document).ready(function()
{
$('#search').keyup(function()
{
if($(this).val().length >= 3 || $(this).val() == '%')
{
$.get("../admin/prx_search.php", {search: $(this).val()}, function(data)
{
$("#results").html(data);
});
}
});
$("#btnSubmit").click(function(){
$.get("../admin/prx_search.php", {search: '%'}, function(data)
{
$("#results").html(data);
});
});
});