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
select:option, you're submitting the form. Is theselectoption fired when someone selects an option from your auto-complete list? – Martin Bean Dec 3 '11 at 12:54