[jQuery] Filter select options values as you type

2008-07-09 Thread Luiz Vitor
I´m looking for a plugin that filters the mached values of a select element. It´s something like Live Search plugin that´s John´s posted in his blog, but instead of filtering a list, it filters the options from a select element. There´s anything like this? If there´s not, what should I aim for a

[jQuery] Firefox-like multi-purpose search bar

2008-03-05 Thread Luiz Vitor
Hi all I´m looking for a jQuery plugin that "emulates" the Firefox multi-purpose search bar (the bar that stands on the right of the address bar), something like: "[type][input][submit]" where: [type]: when clicked, shows a drop-down menu with options that define the type of the search (a person

[jQuery] Re: Fill form fields with value returned from a query

2007-06-28 Thread Luiz Vitor
You could try $.each $.ajax({ type: "POST", url: "test.php", data: "query:edit&id="+idval, dataType: "json", success: function(data){ $.each(data, function(index, value) { id = '#' + index; $(id).val(value); // does anyone know if this works? })