5

Actually I want to do when I hover off the first image must be appear again I want to share my structure with you

<div class="tur-list-box">

    <div class="tur-list-content">
        <figure>
          <img data-src="img/assets/tourlist-2.jpg" class="lazy" src="img/assets/placeholder.png" alt="tur sayfası">
          <a href="#" class="figure-overlay">
              <p class="tour-price">
                <span class="price-big">73,</span>
                <span class="price-little">40</span>
                <span class="price-unit">TL*</span>
                <span class="price-block">‘den itibaren</span>
              </p>
          </a>
        </figure><!-- tur resim-->

        <div class="tur-details">
          <h3><a href="#">Hafta Sonu Turları</a></h3>
          <p>15 farklı program</p>
          <i class=" open-tur-toggle fa fa-chevron-down" aria-hidden="true"></i>
        </div><!-- tur detay-->

    </div><!-- tur list content-->

    <div class="tur-list-toggle">
      <ul class="list-unstyled">
        <li><a href="#" data-img="http://cdn.anitur.com.tr/resimler/orta/2016-02/otel_buyuk-abant-oteli_vPYKBnet58y0itPrkpce.jpg">Kakava ( Hıdırellez ) Şenlikleri Alaçatı <i class="fa fa-chevron-right" aria-hidden="true"></i></a></li>
        <li><a href="#" data-img="http://cdn.anitur.com.tr/resimler/orta/2016-10/otel_abant-palace-hotel_FTfyg8HYVB9lNeOUMA76.jpg">Ot Festivali Urla Enginar Festivali Turu <i class="fa fa-chevron-right" aria-hidden="true"></i></a></li>
        <li><a href="#" data-img="http://cdn.anitur.com.tr/resimler/normal/2016-01/tur_adana-portakal-cicegi-karnavali_3eO46CjOg4k34ooQM2mA.jpg">Adana Portakal Çiçeği Karnavalı Isparta <i class="fa fa-chevron-right" aria-hidden="true"></i></a></li>
        <li><a href="#" data-img="http://cdn.anitur.com.tr/resimler/normal/2016-01/tur_isparta-goller-yoresi-gul-hasadi-turu_Ue7lCTZhtuNk6DHTOy5C.jpg">Gül Hasadı Ve Göller Yöresi Turları <i class="fa fa-chevron-right" aria-hidden="true"></i></a></li>
        <li><a href="#" data-img="http://cdn.anitur.com.tr/resimler/normal/2016-03/tur_manisa-mesir-macunu-senligi-turu_ElEY2IdzFOfHLe6do7ja.jpg">Manisa Mesir Macunu Şenliği Turu <i class="fa fa-chevron-right" aria-hidden="true"></i></a></li>
        <li><a href="#" data-img="http://cdn.anitur.com.tr/resimler/normal/2016-01/tur_isparta-goller-yoresi-gul-hasadi-turu_KN8aDpGyF4O6gKABF5d4.jpg">Uçaklı Festival Turları <i class="fa fa-chevron-right" aria-hidden="true"></i></a></li>
      </ul>
    </div><!-- acilir kapanir alan-->

 </div><!-- tur list box-->
<script>
$(".tur-list-box").hover(
    function(){
        $(this).find(".tur-list-toggle").stop().slideDown();
        $(this).find(".open-tur-toggle").stop().removeClass("fa-chevron-down").addClass("fa-chevron-up");
    },
    function(){
        var getDefaultImg = $(this).find("figure img").data(".lazy");
        console.log(getDefaultImg);
        $(this).find(".tur-list-toggle").stop().slideUp();
        $(this).find(".open-tur-toggle").stop().removeClass("fa-chevron-up").addClass("fa-chevron-down");
    }
);

$('.tur-list-toggle ul li a').hover(
    function(e) {
      e.preventDefault();  
      var getAttr = $(this).attr("data-img");
      $(this).parents(".tur-list-box").find("figure img").attr("src",getAttr);
    },
    function(e) {

    }
);
</script>

and I want to share with you demo link to see how to work

by the way if you can't see data-src on inspect element try to check out on source code (ctrl+U for chrome)

4
  • Possible duplicate of How to get the data-id attribute? Commented Oct 24, 2016 at 8:30
  • 2
    Please create a minimal version that shows your issue - there's too much code that appears to be completely irrelevant. Please read this minimal reproducible example Commented Oct 24, 2016 at 8:50
  • here you are: codepen.io/cowardguy/pen/KgJxPy Commented Oct 24, 2016 at 10:13
  • Has your problem been solved? Please mark an answer or ask for more help Commented Oct 24, 2016 at 13:27

4 Answers 4

8
 $(this).attr("data-src") 

You can check this link for more info How to get the data-id attribute?

Sign up to request clarification or add additional context in comments.

10 Comments

Try giving an id to your image and then $("#ifOfTheImage").data('src');
I know how to get id but I just want to get value of data-src attribute and if I replace attr with data nothing change
shall I give an id or class all images ?
You can fetch using both id and class ,bt if it is a dynamically added image please check stackoverflow.com/questions/17857880/…
$(this).find("figure img").data(".lazy") What is this .lazy inside data()?
|
7

$(selector).data("src") will fetch the value of the data-src attribute

https://api.jquery.com/data/

Comments

2

You can try using the following line:

var getDefaultImg = $(this).find("figure img").data("src");

More about data function here: https://api.jquery.com/data/

Comments

0

You actually want to get the src not the data-src attribute in order to find the source of the image after hover, as you code indicates, so it's var getDefaultImg = $(this).find("figure img").attr("src");.

That's because the lazy load images plugin that you use, replaces the data-src with the src one when loading of the image completes.

For example (taken from the plugin's demo)

<!--image 6 load is complete-->    
<img class="lazy img-responsive" src="images/6.jpg?t=1477297898" style="display: block;">

<!--image 7 not loaded yet-->
<img class="lazy img-responsive" data-src="images/7.jpg?t=1477297898" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==">

3 Comments

but if I get src it's give me another images ? by the way I have links item bottom of the box and if hover any links, images chancing with relevant image
Check this demo I wrote, that's what I suggest: codepen.io/8odoros/pen/zKZLyL
No I understand but I have to get data-src not src. because src has placeholder.png and if I hover.off my main image must be default image

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.