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;
});