in the find_access.rjs file. My problem is that if I have the select
list open and roll over ‘Carrier’ it does the replace_html on the
div… is there a way to make it wait until the user actually selects
the value ‘Carrier’?
Thanks for any help… this is my first foray into AJAX and I know
this is probably a stupidly simple issue.
in the find_access.rjs file. My problem is that if I have the select
list open and roll over ‘Carrier’ it does the replace_html on the
div… is there a way to make it wait until the user actually selects
the value ‘Carrier’?
Thanks for any help… this is my first foray into AJAX and I know
this is probably a stupidly simple issue.
SH
The seleced value transmitted to the server is the current value of your
selectbox. Untill an option is not clicked it is not selected.
I think a better event would be onchange instead of on blur, to trigger
your ajax query. Like that no need to observe the field all the time, so
i’ts better for the app.