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

  • SEARCH
  • Home
  • 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 8484657
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T20:26:22+00:00 2026-06-10T20:26:22+00:00

Iam tyring to use this slider: http://www.menucool.com/javascript-image-slider BUT when Iam trying to use a

  • 0

Iam tyring to use this slider: http://www.menucool.com/javascript-image-slider

BUT when Iam trying to use a code like this, iam unable to get the output..

<table>
<tr>
<td>

<div id="sliderFrame">       
        <div id="slider">
            <a href="http://www.google.com" target="_blank">
                <img src="JSImageSlider/images/image-slider-1.jpg" alt="Welcome to Google"  />
            </a>
            <img src="JSImageSlider/images/image-slider-2.jpg" alt="" width="1200px"/>
            <img src="JSImageSlider/images/image-slider-3.jpg" alt="Pure Javascript. No jQuery. No flash." />
            <img src="JSImageSlider/images/image-slider-4.jpg" alt="#htmlcaption" />
            <img src="JSImageSlider/images/image-slider-5.jpg"/>
        </div>

    </div>
</td>

<td>
<div id="sliderFrame">       
        <div id="slider">
            <a href="http://www.google.com" target="_blank">
                <img src="JSImageSlider/images/image-slider-1.jpg" alt="Welcome to Google"  />
            </a>
            <img src="JSImageSlider/images/image-slider-2.jpg" alt="" width="1200px"/>
            <img src="JSImageSlider/images/image-slider-3.jpg" alt="Pure Javascript. No jQuery. No flash." />
            <img src="JSImageSlider/images/image-slider-4.jpg" alt="#htmlcaption" />
            <img src="JSImageSlider/images/image-slider-5.jpg"/>
        </div>

    </div>
</td>
</tr>
</table>
  • 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-06-10T20:26:24+00:00Added an answer on June 10, 2026 at 8:26 pm

    First: double your slider id. ID = identity of element! Mark sliderFrame as class. Like this:

    <table>
    <tr>
    <td>
    
    <div class="sliderFrame">       
            <div id="slider">
                <a href="http://www.google.com" target="_blank">
                    <img src="images/image-slider-1.jpg" alt="Welcome to Google"  />
                </a>
                <img src="images/image-slider-2.jpg" alt="" width="1200px"/>
                <img src="images/image-slider-3.jpg" alt="Pure Javascript. No jQuery. No flash." />
                <img src="images/image-slider-4.jpg" alt="#htmlcaption" />
                <img src="images/image-slider-5.jpg"/>
            </div>
    
        </div>
    </td>
    
    <td>
    <div class="sliderFrame">       
            <div id="slider2">
                <a href="http://www.google.com" target="_blank">
                    <img src="images/image-slider-1.jpg" alt="Welcome to Google"  />
                </a>
                <img src="images/image-slider-2.jpg" alt="" width="1200px"/>
                <img src="images/image-slider-3.jpg" alt="Pure Javascript. No jQuery. No flash." />
                <img src="images/image-slider-4.jpg" alt="#htmlcaption" />
                <img src="images/image-slider-5.jpg"/>
            </div>
    
        </div>
    </td>
    </tr>
    </table>
    

    Second: change your css file:

    .sliderFrame {position:relative;width:700px;margin: 0 auto;} 
    
    #slider, #slider2 {
        width:700px;height:306px;
        background:#fff url(loading.gif) no-repeat 50% 50%;
        position:relative;
        margin:0 auto;
        box-shadow: 0px 1px 5px #999999;
    }
    #slider img, #slider2 img {
        position:absolute;
        border:none;
        display:none;
    }
    

    And the last one: your js code must implement another instance of your slider:

    var sliderOptions=
    {
        sliderId: "slider",
        effect: "series1",
        effectRandom: false,
        pauseTime: 2600,
        transitionTime: 500,
        slices: 12,
        boxes: 8,
        hoverPause: true,
        autoAdvance: true,
        captionOpacity: 0.3,
        captionEffect: "fade",
        thumbnailsWrapperId: "thumbs",
        license: "free"
    };
    
    var sliderOptions2 =
    {
        sliderId: "slider2",
        effect: "series1",
        effectRandom: false,
        pauseTime: 2600,
        transitionTime: 500,
        slices: 12,
        boxes: 8,
        hoverPause: true,
        autoAdvance: true,
        captionOpacity: 0.3,
        captionEffect: "fade",
        thumbnailsWrapperId: "thumbs2",
        license: "free"
    };
    
    var imageSlider=new mcImgSlider(sliderOptions);
    var imageSlider2=new mcImgSlider(sliderOptions2);
    

    Thats all. Table tag is innosent =)

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

Sidebar

Related Questions

in this page: http://www.studiokhalid.com/test/jquery/2.html I am trying to use a simple Jquery Coda slider
As documented here: http://www.jblotus.com/2011/05/24/keeping-your-handlebars-js-templates-organized/ I am trying to use this function: ( function getTemplateAjax(path,
I am trying to use this code in my QT app QMap<QString,QMap> but there
I am currently trying to use this gem http://github.com/pengwynn/linkedin . Everything works fine (i.e.
I am trying to use the Nivo JQuery Slider (http://nivo.dev7studios.com/) and a Scrollable Gallery
You can view my custom slider here: http://www.awaismuzaffar.com/examples/index.html And below is the JQuery code
i am trying to use this code: <%= File.ReadAllText(Server.MapPath(Members/newsletters/welcome.html))%> which works great but now
I am trying to use this function from a COM API which enables the
I am trying to use the slider in windows phone 7. But i am
I am trying to use this: http://abeautifulsite.net/blog/2011/01/jquery-selectbox-plugin/ to add a transition by default to

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.