How to get Lazy image like Jet.comLoading small image from product gallery every x seconds when mouse hover...

1960's book about a plague that kills all white people

I'm flying to France today and my passport expires in less than 2 months

Alternative to sending password over mail?

Should I tell management that I intend to leave due to bad software development practices?

How to draw the figure with four pentagons?

Can I ask the recruiters in my resume to put the reason why I am rejected?

AES: Why is it a good practice to use only the first 16bytes of a hash for encryption?

Memorizing the Keyboard

What killed these X2 caps?

Is the Joker left-handed?

Watching something be written to a file live with tail

How is it possible to have an ability score that is less than 3?

How do I write bicross product symbols in latex?

How much of data wrangling is a data scientist's job?

Arrow those variables!

How can I tell someone that I want to be his or her friend?

What is the intuition behind short exact sequences of groups; in particular, what is the intuition behind group extensions?

Why is consensus so controversial in Britain?

I Accidentally Deleted a Stock Terminal Theme

In a Spin are Both Wings Stalled?

Why does Arabsat 6A need a Falcon Heavy to launch

How to say in German "enjoying home comforts"

Today is the Center

Why is Collection not simply treated as Collection<?>



How to get Lazy image like Jet.com


Loading small image from product gallery every x seconds when mouse hover on image in product listHow to get Store logo and image alt in magentoGet all Images except “base image” and “small image”How to get the image type in media image collection?How to add Dynamic Image url for Product in MagentoHow can I fix image size?How to get product images based on image type?get image by position and resizeUpload image with Ajax in M2Magento 2 Admin - Edit Products - Disable Lazy Loading






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















How can I set my logo like jet.com before loading images
enter image description hereenter image description here










share|improve this question
















bumped to the homepage by Community 5 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.






















    0















    How can I set my logo like jet.com before loading images
    enter image description hereenter image description here










    share|improve this question
















    bumped to the homepage by Community 5 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.


















      0












      0








      0


      2






      How can I set my logo like jet.com before loading images
      enter image description hereenter image description here










      share|improve this question
















      How can I set my logo like jet.com before loading images
      enter image description hereenter image description here







      magento-1.9 javascript css products product-images






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 23 '17 at 19:54







      Rajiv

















      asked Mar 23 '17 at 14:11









      RajivRajiv

      94115




      94115





      bumped to the homepage by Community 5 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 5 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          2 Answers
          2






          active

          oldest

          votes


















          0














          You can change the Product Placeholder Image in the backend or admin panel of your Magento installation. If you are facing any problem please let me know.



          Please check this link for you reference.






          share|improve this answer


























          • I'm not sure if this is what the question was referring to, based on those screenshots it seems that the images are loaded via AJAX and the placeholder only displays before those images have loaded. Won't this admin change only affect products that don't have any images set?

            – Ben Crook
            Mar 23 '17 at 16:11











          • HI, Ben Crook, I need same as like Jet.com How can I get same as like that? Is there any extension for this?

            – Rajiv
            Mar 23 '17 at 18:37



















          0














          For your requirement here is free extension is available, you can use this ready solution.



          https://github.com/mgtcommerce/Mgt_LazyImageLoader



          after installing this extension , include this extension in your page by modifying its



          mgt_lazy_image_loader.xml



          IN your case you need to modify as below



          <?xml version="1.0"?>
          <layout version="0.1.0">
          <catalog_category_default translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalog_category_default>
          <catalog_category_layered translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalog_category_layered>
          <catalogsearch_result_index translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalogsearch_result_index>
          <!--for home page-->
          <cms_index_index translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </cms_index_index>
          <!--end for home page-->
          </layout>


          after that



          for those image you want to lazy load modify img tag as below



          <img class="lazy" src="getSkinUrl('images/mgt_lazy_image_loader/loader.gif'); ?>" data-src="helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />


          add class lazy and put lazy image placeholder in src and put your orignal image in data-src attribute






          share|improve this answer
























          • HI Thanks for your answer. I'll try and update with you

            – Rajiv
            Mar 25 '17 at 10:54











          • I tried on my dev site but it is not showing. I am using custom design so I need to change any path? Please check my site and suggest me.

            – Rajiv
            Apr 20 '17 at 13:58













          • @Murtuza : after install, my product listing page image is empty, what i need to do?

            – Gem
            Jun 7 '18 at 8:45













          • @Rathinam remove jquery from layout js/mgt_lazy_image_loader/jquery-1.7.2.min.js becuase your theme might already include it

            – Murtuza Zabuawala
            Jun 7 '18 at 9:12













          • @MurtuzaZabuawala I am removed the file -> skinfrontenddefaultdefaultjsmgt_lazy_image_loaderjquery-1.7.2.min.js

            – Gem
            Jun 7 '18 at 10:10












          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "479"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f165856%2fhow-to-get-lazy-image-like-jet-com%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          You can change the Product Placeholder Image in the backend or admin panel of your Magento installation. If you are facing any problem please let me know.



          Please check this link for you reference.






          share|improve this answer


























          • I'm not sure if this is what the question was referring to, based on those screenshots it seems that the images are loaded via AJAX and the placeholder only displays before those images have loaded. Won't this admin change only affect products that don't have any images set?

            – Ben Crook
            Mar 23 '17 at 16:11











          • HI, Ben Crook, I need same as like Jet.com How can I get same as like that? Is there any extension for this?

            – Rajiv
            Mar 23 '17 at 18:37
















          0














          You can change the Product Placeholder Image in the backend or admin panel of your Magento installation. If you are facing any problem please let me know.



          Please check this link for you reference.






          share|improve this answer


























          • I'm not sure if this is what the question was referring to, based on those screenshots it seems that the images are loaded via AJAX and the placeholder only displays before those images have loaded. Won't this admin change only affect products that don't have any images set?

            – Ben Crook
            Mar 23 '17 at 16:11











          • HI, Ben Crook, I need same as like Jet.com How can I get same as like that? Is there any extension for this?

            – Rajiv
            Mar 23 '17 at 18:37














          0












          0








          0







          You can change the Product Placeholder Image in the backend or admin panel of your Magento installation. If you are facing any problem please let me know.



          Please check this link for you reference.






          share|improve this answer















          You can change the Product Placeholder Image in the backend or admin panel of your Magento installation. If you are facing any problem please let me know.



          Please check this link for you reference.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 23 '17 at 16:09









          Ben Crook

          9,2322477




          9,2322477










          answered Mar 23 '17 at 15:20









          Asheem PatroAsheem Patro

          723623




          723623













          • I'm not sure if this is what the question was referring to, based on those screenshots it seems that the images are loaded via AJAX and the placeholder only displays before those images have loaded. Won't this admin change only affect products that don't have any images set?

            – Ben Crook
            Mar 23 '17 at 16:11











          • HI, Ben Crook, I need same as like Jet.com How can I get same as like that? Is there any extension for this?

            – Rajiv
            Mar 23 '17 at 18:37



















          • I'm not sure if this is what the question was referring to, based on those screenshots it seems that the images are loaded via AJAX and the placeholder only displays before those images have loaded. Won't this admin change only affect products that don't have any images set?

            – Ben Crook
            Mar 23 '17 at 16:11











          • HI, Ben Crook, I need same as like Jet.com How can I get same as like that? Is there any extension for this?

            – Rajiv
            Mar 23 '17 at 18:37

















          I'm not sure if this is what the question was referring to, based on those screenshots it seems that the images are loaded via AJAX and the placeholder only displays before those images have loaded. Won't this admin change only affect products that don't have any images set?

          – Ben Crook
          Mar 23 '17 at 16:11





          I'm not sure if this is what the question was referring to, based on those screenshots it seems that the images are loaded via AJAX and the placeholder only displays before those images have loaded. Won't this admin change only affect products that don't have any images set?

          – Ben Crook
          Mar 23 '17 at 16:11













          HI, Ben Crook, I need same as like Jet.com How can I get same as like that? Is there any extension for this?

          – Rajiv
          Mar 23 '17 at 18:37





          HI, Ben Crook, I need same as like Jet.com How can I get same as like that? Is there any extension for this?

          – Rajiv
          Mar 23 '17 at 18:37













          0














          For your requirement here is free extension is available, you can use this ready solution.



          https://github.com/mgtcommerce/Mgt_LazyImageLoader



          after installing this extension , include this extension in your page by modifying its



          mgt_lazy_image_loader.xml



          IN your case you need to modify as below



          <?xml version="1.0"?>
          <layout version="0.1.0">
          <catalog_category_default translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalog_category_default>
          <catalog_category_layered translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalog_category_layered>
          <catalogsearch_result_index translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalogsearch_result_index>
          <!--for home page-->
          <cms_index_index translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </cms_index_index>
          <!--end for home page-->
          </layout>


          after that



          for those image you want to lazy load modify img tag as below



          <img class="lazy" src="getSkinUrl('images/mgt_lazy_image_loader/loader.gif'); ?>" data-src="helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />


          add class lazy and put lazy image placeholder in src and put your orignal image in data-src attribute






          share|improve this answer
























          • HI Thanks for your answer. I'll try and update with you

            – Rajiv
            Mar 25 '17 at 10:54











          • I tried on my dev site but it is not showing. I am using custom design so I need to change any path? Please check my site and suggest me.

            – Rajiv
            Apr 20 '17 at 13:58













          • @Murtuza : after install, my product listing page image is empty, what i need to do?

            – Gem
            Jun 7 '18 at 8:45













          • @Rathinam remove jquery from layout js/mgt_lazy_image_loader/jquery-1.7.2.min.js becuase your theme might already include it

            – Murtuza Zabuawala
            Jun 7 '18 at 9:12













          • @MurtuzaZabuawala I am removed the file -> skinfrontenddefaultdefaultjsmgt_lazy_image_loaderjquery-1.7.2.min.js

            – Gem
            Jun 7 '18 at 10:10
















          0














          For your requirement here is free extension is available, you can use this ready solution.



          https://github.com/mgtcommerce/Mgt_LazyImageLoader



          after installing this extension , include this extension in your page by modifying its



          mgt_lazy_image_loader.xml



          IN your case you need to modify as below



          <?xml version="1.0"?>
          <layout version="0.1.0">
          <catalog_category_default translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalog_category_default>
          <catalog_category_layered translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalog_category_layered>
          <catalogsearch_result_index translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalogsearch_result_index>
          <!--for home page-->
          <cms_index_index translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </cms_index_index>
          <!--end for home page-->
          </layout>


          after that



          for those image you want to lazy load modify img tag as below



          <img class="lazy" src="getSkinUrl('images/mgt_lazy_image_loader/loader.gif'); ?>" data-src="helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />


          add class lazy and put lazy image placeholder in src and put your orignal image in data-src attribute






          share|improve this answer
























          • HI Thanks for your answer. I'll try and update with you

            – Rajiv
            Mar 25 '17 at 10:54











          • I tried on my dev site but it is not showing. I am using custom design so I need to change any path? Please check my site and suggest me.

            – Rajiv
            Apr 20 '17 at 13:58













          • @Murtuza : after install, my product listing page image is empty, what i need to do?

            – Gem
            Jun 7 '18 at 8:45













          • @Rathinam remove jquery from layout js/mgt_lazy_image_loader/jquery-1.7.2.min.js becuase your theme might already include it

            – Murtuza Zabuawala
            Jun 7 '18 at 9:12













          • @MurtuzaZabuawala I am removed the file -> skinfrontenddefaultdefaultjsmgt_lazy_image_loaderjquery-1.7.2.min.js

            – Gem
            Jun 7 '18 at 10:10














          0












          0








          0







          For your requirement here is free extension is available, you can use this ready solution.



          https://github.com/mgtcommerce/Mgt_LazyImageLoader



          after installing this extension , include this extension in your page by modifying its



          mgt_lazy_image_loader.xml



          IN your case you need to modify as below



          <?xml version="1.0"?>
          <layout version="0.1.0">
          <catalog_category_default translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalog_category_default>
          <catalog_category_layered translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalog_category_layered>
          <catalogsearch_result_index translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalogsearch_result_index>
          <!--for home page-->
          <cms_index_index translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </cms_index_index>
          <!--end for home page-->
          </layout>


          after that



          for those image you want to lazy load modify img tag as below



          <img class="lazy" src="getSkinUrl('images/mgt_lazy_image_loader/loader.gif'); ?>" data-src="helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />


          add class lazy and put lazy image placeholder in src and put your orignal image in data-src attribute






          share|improve this answer













          For your requirement here is free extension is available, you can use this ready solution.



          https://github.com/mgtcommerce/Mgt_LazyImageLoader



          after installing this extension , include this extension in your page by modifying its



          mgt_lazy_image_loader.xml



          IN your case you need to modify as below



          <?xml version="1.0"?>
          <layout version="0.1.0">
          <catalog_category_default translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalog_category_default>
          <catalog_category_layered translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalog_category_layered>
          <catalogsearch_result_index translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </catalogsearch_result_index>
          <!--for home page-->
          <cms_index_index translate="label">
          <reference name="head">
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/jquery-1.7.2.min.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/lazy-image-loader.js</name></action>
          <action method="addItem"><type>skin_js</type><name>js/mgt_lazy_image_loader/common.js</name></action>
          </reference>
          </cms_index_index>
          <!--end for home page-->
          </layout>


          after that



          for those image you want to lazy load modify img tag as below



          <img class="lazy" src="getSkinUrl('images/mgt_lazy_image_loader/loader.gif'); ?>" data-src="helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />


          add class lazy and put lazy image placeholder in src and put your orignal image in data-src attribute







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 24 '17 at 4:19









          Murtuza ZabuawalaMurtuza Zabuawala

          12.7k73362




          12.7k73362













          • HI Thanks for your answer. I'll try and update with you

            – Rajiv
            Mar 25 '17 at 10:54











          • I tried on my dev site but it is not showing. I am using custom design so I need to change any path? Please check my site and suggest me.

            – Rajiv
            Apr 20 '17 at 13:58













          • @Murtuza : after install, my product listing page image is empty, what i need to do?

            – Gem
            Jun 7 '18 at 8:45













          • @Rathinam remove jquery from layout js/mgt_lazy_image_loader/jquery-1.7.2.min.js becuase your theme might already include it

            – Murtuza Zabuawala
            Jun 7 '18 at 9:12













          • @MurtuzaZabuawala I am removed the file -> skinfrontenddefaultdefaultjsmgt_lazy_image_loaderjquery-1.7.2.min.js

            – Gem
            Jun 7 '18 at 10:10



















          • HI Thanks for your answer. I'll try and update with you

            – Rajiv
            Mar 25 '17 at 10:54











          • I tried on my dev site but it is not showing. I am using custom design so I need to change any path? Please check my site and suggest me.

            – Rajiv
            Apr 20 '17 at 13:58













          • @Murtuza : after install, my product listing page image is empty, what i need to do?

            – Gem
            Jun 7 '18 at 8:45













          • @Rathinam remove jquery from layout js/mgt_lazy_image_loader/jquery-1.7.2.min.js becuase your theme might already include it

            – Murtuza Zabuawala
            Jun 7 '18 at 9:12













          • @MurtuzaZabuawala I am removed the file -> skinfrontenddefaultdefaultjsmgt_lazy_image_loaderjquery-1.7.2.min.js

            – Gem
            Jun 7 '18 at 10:10

















          HI Thanks for your answer. I'll try and update with you

          – Rajiv
          Mar 25 '17 at 10:54





          HI Thanks for your answer. I'll try and update with you

          – Rajiv
          Mar 25 '17 at 10:54













          I tried on my dev site but it is not showing. I am using custom design so I need to change any path? Please check my site and suggest me.

          – Rajiv
          Apr 20 '17 at 13:58







          I tried on my dev site but it is not showing. I am using custom design so I need to change any path? Please check my site and suggest me.

          – Rajiv
          Apr 20 '17 at 13:58















          @Murtuza : after install, my product listing page image is empty, what i need to do?

          – Gem
          Jun 7 '18 at 8:45







          @Murtuza : after install, my product listing page image is empty, what i need to do?

          – Gem
          Jun 7 '18 at 8:45















          @Rathinam remove jquery from layout js/mgt_lazy_image_loader/jquery-1.7.2.min.js becuase your theme might already include it

          – Murtuza Zabuawala
          Jun 7 '18 at 9:12







          @Rathinam remove jquery from layout js/mgt_lazy_image_loader/jquery-1.7.2.min.js becuase your theme might already include it

          – Murtuza Zabuawala
          Jun 7 '18 at 9:12















          @MurtuzaZabuawala I am removed the file -> skinfrontenddefaultdefaultjsmgt_lazy_image_loaderjquery-1.7.2.min.js

          – Gem
          Jun 7 '18 at 10:10





          @MurtuzaZabuawala I am removed the file -> skinfrontenddefaultdefaultjsmgt_lazy_image_loaderjquery-1.7.2.min.js

          – Gem
          Jun 7 '18 at 10:10


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Magento Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f165856%2fhow-to-get-lazy-image-like-jet-com%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          “%fieldName is a required field.”, in Magento2 REST API Call for GET Method Type The Next...

          How to change City field to a dropdown in Checkout step Magento 2Magento 2 : How to change UI field(s)...

          夢乃愛華...