Title: Disable loading image/part
Last modified: August 21, 2016

---

# Disable loading image/part

 *  [mangtimo](https://wordpress.org/support/users/mangtimo/)
 * (@mangtimo)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/disable-loading-imagepart/)
 * Hello,
 * Is it possible to disable the loading image?
    I just need the pages to transition
   faster between another without the slight pause with the loading image inbetween.
 * Would be of great help. Thanks!
 * [http://wordpress.org/extend/plugins/advanced-ajax-page-loader/](http://wordpress.org/extend/plugins/advanced-ajax-page-loader/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Bryonmathf](https://wordpress.org/support/users/bryonmathf/)
 * (@bryonmathf)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/disable-loading-imagepart/#post-3890038)
 * Hi,
 * Did you ever figure this out? I am just about to start working on the exact same
   project.
 *  Thread Starter [mangtimo](https://wordpress.org/support/users/mangtimo/)
 * (@mangtimo)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/disable-loading-imagepart/#post-3890039)
 * Unfortunately, no… I had to resort to a different solution and dropped AJAX altogether.
   Hope you have better luck on finding a workaround.
 *  [Bryonmathf](https://wordpress.org/support/users/bryonmathf/)
 * (@bryonmathf)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/disable-loading-imagepart/#post-3890040)
 * I solved this,
 * Here is a demo – [http://schillings.huntingtonwebdesign.com/](http://schillings.huntingtonwebdesign.com/)
 * 3 easy steps in the file advanced-ajax-page-loader/ajax-page-loader.js
 * 1) is set fadeout from “slow” to 0
    2) is set fadein from “slow” to 0 3) is comment
   out the line document.getElementById(AAPL_content).innerHTML = AAPL_loading_code;
 * Original Code looks like,
 * ————————————————-
    //start changing the page content. jQuery(‘#’ + AAPL_content).
   fadeOut(“slow”, function() { //See the below – NEVER TRUST jQuery to sort ALL
   your problems – this breaks Ie7 + 8 😮 //jQuery(‘#’ + AAPL_content).html(AAPL_loading_code);
 *  //Nothing like good old pure JavaScript…
    document.getElementById(AAPL_content).
   innerHTML = AAPL_loading_code;
 *  jQuery(‘#’ + AAPL_content).fadeIn(“slow”, function() {
    ————————————————-
 * New code looks like this,
 * ————————————————-
    //start changing the page content. jQuery(‘#’ + AAPL_content).
   fadeOut(0, function() { //See the below – NEVER TRUST jQuery to sort ALL your
   problems – this breaks Ie7 + 8 😮 //jQuery(‘#’ + AAPL_content).html(AAPL_loading_code);
 *  //Nothing like good old pure JavaScript…
    //document.getElementById(AAPL_content).
   innerHTML = AAPL_loading_code;
 *  jQuery(‘#’ + AAPL_content).fadeIn(0, function() {
    ————————————————-

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Disable loading image/part’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/advanced-ajax-page-loader_bcd4a4.
   svg)
 * [Advanced AJAX Page Loader](https://wordpress.org/plugins/advanced-ajax-page-loader/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/advanced-ajax-page-loader/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/advanced-ajax-page-loader/)
 * [Active Topics](https://wordpress.org/support/plugin/advanced-ajax-page-loader/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/advanced-ajax-page-loader/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/advanced-ajax-page-loader/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Bryonmathf](https://wordpress.org/support/users/bryonmathf/)
 * Last activity: [12 years, 8 months ago](https://wordpress.org/support/topic/disable-loading-imagepart/#post-3890040)
 * Status: not resolved