I'm trying to use the jQuery Autocomplete function to submit a form when an item has been selected or an enter has been pressed upon selection. using PHP, Javascript and HTML.

I'm trying to figure out what I'm doing wrong as I am not that experienced in javascript or jQuery. I've searched this site and others for solutions and they all do not seem to work on my code. I'm probably doing something wrong and can't seem to figure out what.

This is the script

<script>
    $(function() {
        var availableproducts = [ <?php echo $tag_list; ?> ];
        $( "#products" ).autocomplete({
            source: availableproducts,
            select: function(event, ui) { 
                $("#products").val(ui.item.value);
                $("#partno_item_form").submit(); }
        });

    });

</script>

This is the form and the input field related to #products

echo '<form method="POST" name="partno_item_form">
        <tr>
            <td>
                <input id="products" name="item_select" class="autocomp">
            </td>
      </form>

Your assistance in troubleshooting this issue is greatly appreciated!

Thanks in advance

link|improve this question
It looks like, in your select: option, you're submitting the form. Is the select option fired when someone selects an option from your auto-complete list? – Martin Bean Dec 3 '11 at 12:54
I do not know for sure. I'm not even exactly sure what you mean. I think jQuery detects that part. I'm still trying to figure out the javascript syntax and how it handles. – GuZzie Dec 3 '11 at 13:15
feedback

1 Answer

up vote 0 down vote accepted

This selector:

$("#partno_item_form")

selects elements by id. Your form does not have an id of partno_item_form, so submit() is never being called for it.

Change your selector in the select event handler to:

$("form[name='partno_item_form']").submit();

Using the attribute equals value selector will allow you to select the form by its name attribute.

link|improve this answer
great!! it's working, you are soo awesome ;) – GuZzie Dec 3 '11 at 16:12
@GuZzie: Glad to help! – Andrew Whitaker Dec 3 '11 at 16:12
feedback

Your Answer

 
or
required, but never shown

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