Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6360161
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T23:36:48+00:00 2026-05-24T23:36:48+00:00

I have following to do the photo slideshow: $(‘#Yeah’).click(function() { {% for photo in

  • 0

I have following to do the photo slideshow:

$('#Yeah').click(function() {
    {% for photo in photos %}
    $('#slideShow').append('<img src="/image?blob_key={{ photo }}" />');
    % endfor %}

    $('#slideShow').cycle({ 
      fx:     'fade',
      speed:  300, 
      next:   '#slideShow', 
      timeout: 0 
    });
});

When I have empty img tag under the div tag, the slideshow won’t work at all.

<div id="slideShow">

</div>

However, if I at least add one img tag under the div tag, it works with the same codes.

<div id="slideShow">
    <img class="pics" width="200" height="200"> 
</div>

Does anyone have any clue what’s the problem ? Any helps are appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T23:36:49+00:00Added an answer on May 24, 2026 at 11:36 pm

    I think that the problem is that the images are not fully loaded before the Cycle plugin is initialized.

    Looking through the source of the “lite” version, I see:

        $slides.each(function() {
            var $el = $(this);
            this.cycleH = (opts.fit && opts.height) ? opts.height : $el.height();
            this.cycleW = (opts.fit && opts.width) ? opts.width : $el.width();
        });
    

    Because you do not specify the width and height options, it defaults to the width and height of the <img> element, which are both 0 when the image is not fully loaded.

    EDIT: Try:

        var imgEls = $([]);
    
        {% for photo in photos %}
        imgEls = imgEls.add($('<img src="/image?blob_key={{ photo|urlencode }}" />'));
        {% endfor %}
    
        var numLoaded = 0;
        imgEls.load(function () {
            ++numLoaded;
    
            if (numLoaded == imgEls.length) {
                $('#slideShow').cycle({ 
                    fx:     'fade',
                    speed:   300
                });
            }
        });
    
        imgEls.appendTo($('#slideShow'));
    

    EDIT2: There is a syntax error:

    $(this\).ajaxSubmit(options);
    

    needs to be:

    $(this).ajaxSubmit(options);
    //    ^ No backslash character '\'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following image tag on a page: <img src=http://photo.com/img/p806792255-6.jpg id=will6-1 alt=will6-1 title=will6-1
I have the following bit of code, simply: $(function() { $('a.add-photos-link').live('click', function(e) { $(this).colorbox({
I have the following markup: <div class=user-photo> <img src= /> </div> I want to
I have the following code on the my page... <a href=javascript:change_product_photo(2);><img id=alternate_product_photo_2 style=border-color:#666666; src=/v/vspfiles/photos/00-6189-2S.jpg
I have following repository: public function findClassPhotoByPath($path) { return $this->getEntityManager() ->createQuery('SELECT p FROM KSRGalleryBundle:Photo
I have the following function that retrieves an image from a twitter feed, the
I have following code in my application: // to set tip - photo in
I have following two tables: Person {PersonId, FirstName, LastName,Age .... } Photo {PhotoId,PersonId, Size,
So, I have the following scope in my Photo model: scope :best, order(:average_rating.desc) The
I have the following code I use to cache photos I load off Flickr

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.