hello
I want to give an extra parameter from a select box to a php file:
$j('#investigator').autocomplete({
source: "/file.php?p="+$j('#select').val(),
select: function(event, ui) {
alert($j('#select').val()); //here it gives the ricght value
}
});
This always send the first item of the selectbox, for example 1. Is it possible to send a extra param?