KOD:
function dynamic_searchAjax( ProductName, CategoryName, BrandID, supplierID, EndOfLineItem )
{
$.ajax({
type: "POST",
async: true,
data: "ProductName="+ProductName+
"&CategoryName="+CategoryName+
"&BrandID="+BrandID+
"&supplierID="+supplierID+
"&EndOfLineItem="+EndOfLineItem,
url: "dynamic_search_item.php",
beforeSend: function()
{
$("#waith").html("<img id='loading' src='images/rot_small.gif' alt='working..' />");
},
success: function(success)
{
$("#search_table").html(success)
$('#searchText').focus();
}
});
}
<input onkeyup=" if((this.value.length)>2) { dynamic_searchAjax( this.value, $('#SubCategoryID').val(), $('#BrandID').val(), $('#supplierID').val(), $('#EndOfLineItem').val() ); }" type="text" id="searchText" name="searchText" class="tableitemwhite2" style="float:left; width:360px;">