up vote 2 down vote favorite
1
share [g+] share [fb]

Im trying to get the selected value of a 2 radio options (1 & 2)

and pass it into a auto complete extraParams: value

so far i have this

extraParams: { search_option: $('input[name=search_option]:checked').val() },

problem is if the radio is changes the value is not updated.

Any ideas as how i can do this

Thanks

link|improve this question

67% accept rate
Amended my answer, hope it works! – redsquare Aug 1 '09 at 9:42
feedback

1 Answer

up vote 7 down vote accepted

You need to specify a callback to a function otherwise that value is locked into the autocomplete when you initialize the plugin.

extraParams: {
         search_option : function() { 
                return $('input[name=search_option]:checked').val(); 
         }
}
link|improve this answer
Hey thanks redsquare. I thought it would need to be a function. Having a little trouble with the syntax however as im new to jquery. Getting Error: missing : after property id? How to fix this thanks – John Aug 1 '09 at 9:34
Can you try the above – redsquare Aug 1 '09 at 9:41
1  
hmmm, i think because its already inside a function maybe the problem. <script type="text/javascript"> jQuery(function($){ $("#keywords").autocomplete( "/ajax.search.php", { extraParams: { search_option : function() { $('input[name=search_option]:checked').val(); } }, delay:10, minChars:2, Syntax error is gone but o get no value. Any more ideas, thanks? – John Aug 1 '09 at 9:49
your missing the return – redsquare Aug 1 '09 at 9:53
jQuery(function($){ $("#keywords").autocomplete( "/ajax.search.php", { extraParams: { search_option : function() { return $('input[name=search_option]:checked').val(); } }, delay:10, minChars:2 – redsquare Aug 1 '09 at 9:53
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.