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'm heaving a problem and can't seem to find the/an answer. I use sliderjs from sliderjs.com to, obviously, create a slider panel. The script works great with hard coded html (

  • elements are rendered in a niceslideing panel).

    Now I want to insert those ul, li elements dynamically with javascript. The problem is dat the sliderjs isn't formating the newly inserted code right. What am I doing wrong and what should I do to correct this. Any help is appreciated. The sliding panel only works on phone device.....

    If I hardcode this than it works

    <div id='slider' class='swipe' style='width:150px'>
    <ul>
    <li style='display:block'><div>1</div></li>
    <li style='display:none'><div>2</div></li>
    <li style='display:none'><div>3</div></li>
    <li style='display:none'><div>4</div></li>
    <li style='display:none'><div>5</div></li>
    </ul>
    </div>
    

    This is my full code with the javascript that isn't working

     <html>
    <head>
        <title></title>
        <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
        <meta content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=1;" name="viewport" />
        <style type="text/css">
            html{background-color:transparent;height:100%;width:100%;}
            body{background-color:transparent;font-size:11pt;font-family:helvetica;}
            img{border:0px;}        </style>
        <link rel="stylesheet" href="BTA_Blog_Leather_colors/brown/BTA_Blog_Leather_brown.css" type="text/css" />
        <link rel="stylesheet" href="style.css" type="text/css" />
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
        <script type="text/javascript">
            $(document).ready(function(){
                              if ($(".date").text() === "--")
                              $(".datecontainer").hide();
                              if($('.thevideo iframe').attr('src') === ""){
                              console.log('11');
                              $(".videocontainer").hide();
                              }
    
                              var names = "http://profile.ak.fbcdn.net/hprofile-ak-snc4/187660_100002435611825_501947_q.jpg,http://www.deerns.nl/gfx/image.phtml?image=/images/_images_2012_website/employees/Nederland/Martijn%20Timmer_DIE2082.jpg&width=50&height=50&type=crop,http://profile.ak.fbcdn.net/hprofile-ak-snc4/187660_100002435611825_501947_q.jpg";
    
    var namesArray = names.split(",");
    var item, items = [];
    
    for (var i = 0; i < namesArray.length; i++) {
        item = {};
        item.name = namesArray[i];
        items.push(item);
    }
    
    var main = $("<ul>");
    var str = "<li style='display:block;'><div><img src='http://profile.ak.fbcdn.net/hprofile-ak-snc4/187660_100002435611825_501947_q.jpg' /></div></li>";
    for (var i = 0; i < items.length; i++) {
        str += "<li style='display:none;'><div><img src='" + items[i].name + "' /></div></li></ul>";
    
    }
    main.html(str);
            $('#slider').append(main);
    
                              });
            </script>
    </head>
    <body>
        <div id="container">
            <div class="navbar">
                <div class="titlebox">
                    <div class="title">Gaat Europa het redden met de Euro? en met weet ik wat nog allemaal</div>
                </div><!-- end titlebox -->
            </div><!-- end navbar -->
            <div id="body">
                <div class="header">
                    <div class="theimage">
                        <div class="imagecontainer">
                            <div class="image"><!-- <img src="http://www.celfoon.nl/bt-addons/testimage130x130.png" /> -->
                                <div class="datecontainer">
                                    <div class="monthcontainer">
                                        <div class="dmonth">[[DATEMONTH]]
                                        </div> <!-- en monthcontainer -->
                                        <div class="daycontainer">
                                            <div class="dday">[[DATEDAY]]
                                            </div><!-- end daycontainer -->
                                            <div class="yearcontainer">
                                                <div class="dyear">[[DATEYEAR]]
                                                </div> <!-- end yearcontainer -->
                                            </div>
                                        </div>
                                    </div>
                                </div><!-- end datecontainer -->
                            </div>
                        </div>
                    </div><!--end theimage -->
                </div><!-- end header -->   
                <div class="content">
    
                    <div class="introtextcontainer">
                        <div class="introtext">
            <div id='slider' class='swipe'>
    
    </div>
    <a href='#' onclick='slider.prev();return false;'>prev</a>
    <a href='#' onclick='slider.next();return false;'>next</a>
    <br><br>
                        </div>
                    </div>
                    <div class="fulltextcontainer">
                        <div class="fulltext">
                            [[FULLTEXT]]
                        </div><!--end fulltext-->
                    </div><!--end fulltextcontainer-->
    
    
                    <div class="videocontainer">
                        <div class="thevideo">
                            <iframe allowfullscreen="" frameborder="0" height="174" src="[[YOUTUBE]]" width="280"></iframe>
                        </div><!-- end videocontainer -->
                    </div><!-- end thevideo -->                 
                </div><!-- end content -->
            </div><!-- end body -->
            <div id="footer">
                <div class="footertextcontainer">
                    <div class="footertext">[[FOOTERTEXT]]
    
                    </div>
    
                </div>
            </div>
        </div><!-- end container -->
        <script src='swipe.js'></script>
    <script>
    new Swipe(document.getElementById('slider'));
    new Swipe(document.getElementById('slider2'));
    var slider = new Swipe(document.getElementById('slider'));
    var slider3 = new Swipe(document.getElementById('slider3'));
    var slider4 = new Swipe(document.getElementById('slider4'));
    </script>
    </body>
    </html>
    
  • share|improve this question
    1  
    You can refer to this answer to make it work dynamically. stackoverflow.com/questions/10526293/… – Sumeet Chawla Oct 30 '12 at 6:44

    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.