Search This Blog

Monday, June 10, 2013

BANNER ROTATOR USING JAVASCRIPT- CONTENT EDITOR WEBPART SHAREPOINT


<table cellspacing="0" cellpadding="0" width="100%"><tbody><tr><td><a id="picture_link" href="/Connect/Connect_May_2013.pdf" target="_blank"><img id="img1" src="/PublishingImages/connect_may_2013_banner2.jpg" width="495" border="0" alt=""/> </a>&#160;</td></tr></tbody></table>
<script language="javascript">

    setTimeout("show()", 1000);

    function show() {
        document.getElementById('img1').src = "/PublishingImages/connect_may_2013_banner1.jpg";
        document.getElementById('picture_link').href = "/Connect/Connect_May_2013.pdf";
        setTimeout("show2()", 5000);
    }
    function show2() {
        document.getElementById('img1').src = "/PublishingImages/connect_may_2013_banner2.jpg";
        document.getElementById('picture_link').href = "/Connect/Connect_May_2013.pdf";
        setTimeout("show3()", 5000);
    }
    function show3() {
        document.getElementById('img1').src = "/PublishingImages/connect_may_2013_banner3.jpg";
        document.getElementById('picture_link').href = "/Connect/Connect_May_2013.pdf";
        setTimeout("show()", 5000);
    }
 </script>

No comments:

Post a Comment