Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been trying to figure out what is wrong with this for the last 2 days. I have a drop down that uses autocomplete for Ids. That works fine. When an Id is selected, I'm trying to get it to load a small table that is displayed with the Id information (the onSelect portion below).

However when the Id is selected, the page is refreshed, as if I clicked on a link. I realize this is probably something small, I just can't seem to figure it out.

var options, a;

$(document).ready(function(){
    options = { 
        serviceUrl:'jsonExceptionRequest.cfm',
        onSelect: function(value, data){
                    $("#claimData").load('ajaxExceptionRequest.cfm?Id=' + value);
                }
        };
    a = $('#query').autocomplete(options);
    return false;
});

<span id="claimData"></span>
share|improve this question
Why are you returning false at the end of $(document).ready ? – Blazemonger Nov 16 '11 at 15:18

1 Answer

Try moving return flase; inside the onSelect block.

share|improve this answer
Found the problem. The page "ajaxExceptionRequest.cfm" had debugging on the bottom of it. When I pulled that into my main page, it must have had code within it that redirected the browser. I removed all debugging, and everything is working fine now. – user1049942 Nov 16 '11 at 16:20

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.