How To Not Show Loading Box

hi friends..

i use ajax in page by javascript:

  $(document).ready(function(){
  $.ceAjax('request', fn_url('panel.refresh_left_panel'), {
      cache: false,
      callback: function(data) {
          $('#count-req').text(data['count-req']);
      }
  });

});

I don't want the loading_box to be displayed only in this code:

i use:

beforeSend:function(){
    $("#ajax_overlay").hide();
    $("#ajax_loading_box").hide();
},

please help me... tanks

Just add

hidden: true,

after

cache: false,

Just add

hidden: true,

after

cache: false,

Worked.. Thank you very much.. :wub: :wub:

You are welcome! :)