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.

I have been trying to work on such a script that when i click on the link then in certain div the whole content of the link's page get load i tried the following code but its not working fine and always blink when i click on the link. Kindly let me know if there's any issue and how can i accomplish it wither way:

Live example: http://caremerge.us/ajax/waleed_rai_2/index_FAIZAN.html

<script>
    $("#aa").click(function(){
        // load by id on click

            $("#response").delay(10000).load("aa.html");
        });
</script>
    <div id="main-body">        
            <div class="span-19 last" id="response">
    </div>

            </div>
share|improve this question

1 Answer

Assuming #aa is an <a> tag, you can use either return false or event.preventDefault() to stop the link from going anywhere. event.preventDefault() can be placed anywhere in the code block, while return false should be placed at the end.

$("#aa").click(function(){

    //prevent the page from going anywhere
    event.preventDefault()

    // load by id on click
    $("#response").delay(10000).load("aa.html");

    //return false also does the same thing
    return false;
});
share|improve this answer
not worked kindly check this link and click on the firest link on the page caremerge.us/ajax/waleed_rai_2/index_FAIZAN.html – user1371693 May 19 '12 at 9:32

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.