hi all,

i have the following code :

        <input type="text" id="search" name="search" />
        <div id="hint"></div>
        <script type="text/javascript">
            var includeScript = "include/inc_search_medicaments.php?";
            var auto_1 = new Ajax.Autocompleter (
                    "search",
                    "hint",
                    includeScript, {
                            afterUpdateElement : setSelectionId,
                            autoSelect: true, 
                            minChars: 2,
                            callback:funxSerialize
                        }
                    );

            function setSelectionId(text, li) {
                document.getElementById('atc').value = li.id;
            }
            function funxSerialize() {
                return Form.serialize($('infoform')) ;
            }
        </script>

it works perfectly on firefox but has a strange error in chrome v. 33.
it does not submit any params via post. 
i've updated the libs to the latest version, but still no effect :(

any hint ?

gj.

-- 
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to prototype-scriptaculous+unsubscr...@googlegroups.com.
To post to this group, send email to prototype-scriptaculous@googlegroups.com.
Visit this group at http://groups.google.com/group/prototype-scriptaculous.
For more options, visit https://groups.google.com/d/optout.

Reply via email to