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 am trying to produce a browser refresh in the background after a click.

My issue is i am allread using ajax to process other element on the page but i need these to be updated.

// approved - allready approved section

$('.allready_approved').click(function(event) {
        event.preventDefault();                 
    $('#main_bloc_approved').slideUp();

    // i need to perform a browser refresh here but without reloading the page here???

     $('#main_bloc_allready_approved').fadeIn();                    
     return false;


     return false;
});

$('.approved').click(function(event) {
            event.preventDefault();             
    $('#main_bloc_allready_approved').slideUp();

     // i need to perform a browser refresh here but without reloading the page here???

     $('#main_bloc_approved').fadeIn();
     return false;
});
share|improve this question
so why not just make an ajax call there and pull in your new data? – JohnP Mar 14 '11 at 9:34
what do you mean by "browser refresh" ? What do you need to be "refreshed" ? – Thomas Menga Mar 14 '11 at 9:46

1 Answer

up vote 3 down vote accepted

I think you should use, unless I have misunderstood you :)

$(document).ready(function (){
   $('body').load(window.location.href,'body');
});

also convert your .click (...) into .live('click',...)

also you have return false; twice which is only needed once really.

Not that I wanna be technical about this but,

(number of clicks + number of unnecessary bytes) * number of users = better think of another way e.g. .setTimeout() to update every minute to save some bandwidth or you will go bankrupt before you care to think :) but thats my opinion and not a fact :)

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.