Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my page I am using ajax to generate/show a textbox after button click. I am using autocomplete functionality in this textbox, but autocomplete call is not firing off. I cannot see the autocomplete call in firebug when I try to enter anything in the textbox.

But at the same time it is working fine in a plain test page which has a textbox (without ajax generation), so that means jQuery, autocomplete files are okay.

I am suspecting ajax generated textbox's ID should be called in autocomplete function in a different way. I have attached below what way I tried.

<script>
    $(function(){  
        $("#orderingparty2").autocomplete("auto/findparty.cfm");
    })
</script>
share|improve this question

2 Answers

up vote 3 down vote accepted

Bind the code adding autocomplete to the ajax function which is generating the input box. Else you can trigger the autcomplete event on any event like onclick.

$("#orderingparty2").live('click',function(event) 
{

$(this).autocomplete("auto/findparty.cfm");


});
share|improve this answer
thanks Abdul, it worked like a charm... – Thomas May 20 '11 at 7:13
hi Abdul this is not working in IE....pls help out....I am using IE7 – Thomas May 20 '11 at 7:51
Try plugins.jquery.com/project/livequery livequery – Abdul Kader May 20 '11 at 9:00
I am not getting any ways to sort out IE issue..pls help out... – Thomas May 20 '11 at 9:26
Did you try livequery? – Abdul Kader May 20 '11 at 9:27
show 5 more comments

You have to attach the autocomplete call in the ajax handler that appends the textbox, something like this:

$.ajax({  
   ... 
   success(function(...) {
      $('<input type="text">')             
         .attr(...)
         .css(...)
         .appendTo('#myForm')
         .autocomplete("auto/findparty.cfm");  
   })
   ...
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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