ajax problems on loading page [closed]

I finally find out the problem.
The problem is when I load wordpress page a builtin ajax call is started. and this part of my code:

jQuery(document).ajaxStart(function() {
        
        
        jQuery( "#step-general" ).hide();
        jQuery( ".pelak-loader" ).show();
        
    }).ajaxSuccess(function() {
       
        jQuery( ".pelak-loader" ).hide();
       

    });

is used on loading page. I use if conditional in ajaxStart to limit its border!