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 4322340
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T08:51:39+00:00 2026-05-21T08:51:39+00:00

I have created a slideshow using jquery easyslider. But its not happening. I am

  • 0

I have created a slideshow using jquery easyslider. But its not happening. I am not able to find where exactly the problem.

The Javascript is as follows:

<script type="text/javascript">
    $(document).ready(function(){   
        $("#slider").easySlider({
            auto: true, 
            continuous: true
        });
    }); 
</script>

..and the corresponding HTML:

<div id="slider">
    <ul>                
        <li><img src="Beauty/1.jpg" /></li>
        <li><img src="Beauty/2.jpg" /></li>
        <li><img src="Beauty/3.jpg" /></li>
        <li><img src="Beauty/4.jpg" /></li>
        <li><img src="Beauty/5.png" /></li>         
    </ul>
</div>
  • 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-21T08:51:40+00:00Added an answer on May 21, 2026 at 8:51 am

    The code you posted here is working. I’ve setup a fiddle : http://jsfiddle.net/jomanlk/jFePh/

    Looking at your code in the HTML pages there are a couple of problems.

    1. The images don’t actually exist so you wouldn’t know whether it’s working properly anyway

    2. Your show/hide code doesn’t seem to be working (toggleMe('para2') I think). It doesn’t actually show all the containers.

    3. #slider remains hidden and the UL inside just keeps switching between pt/px.

    Your markup seems to be ok, but your JS is not working as you expect. There’s a lot of JS that’s been included at the top of the page, by Dreamweaver I assume. You might want to clean out all that and get the basics working before you add any functionality to the page.

    EDIT

    The problem you’re having is related to how easySlider figures out the dimensions.

    You start out with

    <div id="para3" style="display:none">
    

    When the easySlider code kicks in, it tries to figure out the dimensions. Since the height and the width are set to 0 it figures it can’t actually do the slideshow and gives up (this is an oversimplification)

    This can be seen in this fiddle I setup : http://jsfiddle.net/jomanlk/jFePh/2/

    The solution for this would be to remove the display:none from your DIVs and hide it using JS AFTER easySlider has loaded and done its bit.

    So to fix this problem.

    1. Remove the style attribute and add a class so it looks like this <div id="para1" class="hideMeLater">

    2. Change the JS at the top of your document so it looks like the below

        $(document).ready(function(){   
            $("#slider").easySlider({
               auto: true, 
               continuous: true
            });
            $('.hideMeLater').hide();//hiding all the divs we removed display:none from
        });
       

    This should do fix your slideshow problem. I’ve set up a fiddle with a sample here : http://jsfiddle.net/jomanlk/jFePh/3/

    As an aside, I suggest you get familiar with JS and jquery so that you understand what is actually happening when you include plugins. There are some excellent tutorials available on the net.

    Also, you should clean up your HTML.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to create a gallery slideshow using Jquery Tools Scrollable plugin. But
I have created a custom dialog for Visual Studio Setup Project using the steps
I have created a C# class file by using a XSD-file as an input.
I have created the following example to illustrate a problem I have with a
After toying with the jquery slideshow extension, I created my own that better suited
I have created a Conceptual Model in my project using a table in my
Have created a c++ implementation of the Hough transform for detecting lines in images.
I have created a template for Visual Studio 2008 and it currently shows up
I have created a PHP-script to update a web server that is live inside
I have created a UserControl that has a ListView in it. The ListView is

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.