5 Replies Latest reply: Dec 2, 2014 8:42 PM by Roopavathy RSS

    BBC News Ticker

    Roopavathy Community Member

      Hi,

       

      I have included BBC Like News Ticker from this website

       

      http://www.jqueryscript.net/text/BBC-News-Like-Website-Ticker-Plugin-with-jQuery-News-Tick er.html

       

      Here is my site link:

       

      http://bhc.edu.in/TESTSITE/slider.html

       

      But it doesn't work.Please check what is wrong with my code.

        • 1. Re: BBC News Ticker
          Ken Binney CommunityMVP

          In which browser is it failing?

          Seems OK in Firefox.

          • 2. Re: BBC News Ticker
            hans-g. CommunityMVP

            Hello,

             

            works fine in my FF 34.0  AND in my IE 11.

             

            I would like to take this opportunity to remember on Ben's hint about a "RSS Reader", which I myself have realised there:

            http://hansgd.de/rss/index.html Okay, it's in German language, but I'm sure you are able to understand the mode of action. You have to use "Beschreibung: >>> Mehr..."

             

            Have fun!

            Hans-Günter

            • 3. Re: BBC News Ticker
              Roopavathy Community Member

              I am having FireFox 33.1....I don't find the bbc like news ticker...

               

              My code:

               

              <div id="bbc_news">

               
               
              <ul id="js-news" class="js-hidden">


               
              <li class="news-item">jQuery News Ticker now has support for right-to-left languages!</li>

                <li class="news-item">jQuery News Ticker now has support for loading content via an RSS feed!</li>

                <li class="news-item">jQuery News Ticker now has an optional fade effect between items!</li>

                <li class="news-item">New updates have been made to jQuery News Ticker! Check below for more details!</li>

                <li class="news-item">jQuery News Ticker is now compatible with jQuery 1.3.2! See below for further details and for latest download.</li>

                <li class="news-item">Further updates to jQuery News Ticker are coming soon!</li>


              </ul>

              <script type="text/javascript">


              $(function () {

                $('#js-news').ticker();

              });

              </script>
               
              </div>

              • 4. Re: Re: BBC News Ticker
                Ben Pleysier CommunityMVP

                You are using the wrong version of jQuery. Copy and paste the following into a new document

                 

                <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
                <html xmlns="http://www.w3.org/1999/xhtml">
                <head>
                <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                <meta name="description" content="jQuery News Ticker is a lightweight, stylish, easy to use and flexible jQuery news ticker" />
                <title>jQuery News Ticker</title>
                <link href="http://bhc.edu.in/TESTSITE/News-Ticker/styles/ticker-style.css" rel="stylesheet">
                <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
                <script src="http://bhc.edu.in/TESTSITE/News-Ticker/includes/jquery.ticker.js"></script>
                </head>
                <body>
                <ul id="js-news" class="js-hidden">
                  <li class="news-item">jQuery News Ticker now has support for right-to-left languages!</li>
                  <li class="news-item">jQuery News Ticker now has support for loading content via an RSS feed!</li>
                  <li class="news-item">jQuery News Ticker now has an optional fade effect between items!</li>
                  <li class="news-item">New updates have been made to jQuery News Ticker! Check below for more details!</li>
                  <li class="news-item">jQuery News Ticker is now compatible with jQuery 1.3.2! See below for further details and for latest download.</li>
                  <li class="news-item">Further updates to jQuery News Ticker are coming soon!</li>
                </ul>
                <script>
                $(function () {
                    $('#js-news').ticker();
                });
                
                </script>
                </body>
                </html>
                
                • 5. Re: BBC News Ticker
                  Roopavathy Community Member

                  Thank you very much Ben.....It works......