AntDropDownList with parameters to Ajax request
The aim of this sample of AntDropDownList, is to show how to supply parameter to the Ajax request.
The AntDropDownList, normaly contain Flash, Mater, Dusty and Sargent. With Ajax parameter, Dusty is removed.
Source Code
$(document).ready(function() {
var data = { "execpt" : "Dusty" } //JSON object supplied to Ajax request
LoadAntDropDownList($("#myList"), "../public/php/basic_list_filtred.php", null, null, data);
});