Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to change img element in waterwheelCarousel

I have tried to replace img with div in .js/.css

so my html look like :

<div id="waterwheel-carousel-default">
      <div class="carousel-controls">
        <div class="carousel-prev"></div>
        <div class="carousel-next"></div>
      </div>
      <div class="carousel-images">

   <div style="background-image:url('images/testImage1.png')">hhhhh</div>
   <div style="background-image:url('images/testImage1.png')">hhhhh</div> 
   <div style="background-image:url('images/testImage1.png')">hhhhh</div> 
   <div style="background-image:url('images/testImage1.png')">hhhhh</div>     

      </div>
 </div>

My Js file I have replace every :

    $(this).find(".carousel-images img").length 
   itemsContainer.find('img')

Respectively with:

    $(this).find(".carousel-images > div").length
    itemsContainer.find('div')

but it dosen't work any one can help?

share|improve this question
Are your trying to change a background image of DIV element? Then you should use css() jquery function. – Marcin Buciora Jan 16 at 13:16
@MarcinBuciora the original carousel used <img> instead of <div> in html I want to change <img> by <div> because i want to add some elements to carousel – Mohammed Jan 16 at 13:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.