vote up 2 vote down star

I found that using declaring jQuery Autocomplete as the first function in your script prevents other functions from being executed.

The second and third functions below will not work:

<script>
$(function() {
	$("#ent_input").autocomplete('get_suggestions', 
        {autoFill: true, scroll: false});
});

    // Freebase Suggest
$(function() {
	$("#ent_input_fb").suggest({type:'/film/director'});
});

$(function() {
	$("#ent_input_fb2").suggest({type:'/film/actor'});
});
</script>

However, if I move autocomplete to the bottom, the other script works, but autocomplete doesn't.

<script>
    // Freebase Suggest
$(function() {
	$("#ent_input_fb").suggest({type:'/film/director'});
});

$(function() {
	$("#ent_input_fb2").suggest({type:'/film/actor'});
});

    $(function() {
	$("#ent_input").autocomplete('get_suggestions', 
        {autoFill: true, scroll: false});
});
</script>

Has anyone run into any similar issues with jQuery Autocomplete?

flag

That should work, I do it all the time. Is it possible an error in one of the functions is preventing the other from firing? – stimms Sep 16 at 1:27
3  
@Wraith Monster: try replacing the autocomplete and suggest function calls with something simpler and guaranteed to work (I suggest alerts). If the alerts fire without issue, then you can narrow down the problem to a different area. – David Andres Sep 16 at 1:30
Question of etiquette: David's answer does work, and it led me to see that their is an issue with "autocomplete", but the overall code is not working. Do I start a new thread, or edit this one? – Wraith Monster Sep 16 at 12:05
@Wraith Monster: Is there a way to alter the question itself to more clear? – David Andres Sep 16 at 18:27

1 Answer

vote up 3 vote down check

jQuery should execute all of your $(function()...) handlers in the order they have been declared without issue. It looks like your calls to autocomplete and suggest are the culprits.

jQuery is extremely cautious about event handlers, and if you tried to do something similar to the above with click handlers you'll notice that they too execute in sequence (rather than overwrite each other). Try it:

Assume someElement is marked up as follows:

<span id="someElement" onclick="alert('Me First!');" />

...and the JavaScript

$("#someElement").click
(
  function()
  {
    alert("1");
  }
);

$("#someElement").click
(
  function()
  {
    alert("2");
  }
);

You will see three alert boxes shown in the following order: "Me First!," "1," and "2."

jQuery goes the extra mile to retain your marked up onclick handlers as the first function to click when the event occurs. This makes it very safe to use this library with server-side technology like ASP.NET, which sprinkles onclick handlers all over the place.

To remove all jQuery-assigned click event handlers from an element, do the following:

$("#someElement").unbind("click");

Bear in mind that this does not remove a click handler assigned some other way (i.e., the onclick attribute in markup).

link|flag
$(function() { ... }); is a shortcut for $(document).ready(function() { ... });. See docs.jquery.com/Core/jQuery#callback – kevingessner Sep 16 at 1:24
@kevingessner: did you deduct me? That's a bit strong. – David Andres Sep 16 at 1:25
$(function() {} ) is shorthand for $(document.ready(function() {})). It seems like OP's version should work? – womp Sep 16 at 1:26
@womp: it should. – David Andres Sep 16 at 1:26
@David Andres: Thank you for the details. I tried your suggestion and it does work. I think their is an issue with "autocomplete". If I move it to the bottom, any of the functions above it work. If it's at the top, none of the ones below it work. – Wraith Monster Sep 16 at 12:04
show 1 more comment

Your Answer

Get an OpenID
or

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