[jQuery] [autocomplete] request
Hi,
as there is currently a discussion about autocomplete plugin going on
i would like to ask if:
1.) is it possible to extend the option:width parameter to
width: (number | auto)
where auto would set the width of the select box to the width of the
input element
2.) extraParams should give the input elemet as parameter
$.each(options.extraParams, function(key, param) {
extraParams[key] = typeof param == "function" ? param(input) :
param;
});
instead of
extraParams[key] = typeof param == "function" ? param() : param;
thanks
stefan