Results 1 to 1 of 1
Thread: RSS AJAX Newsticker
-
12-30-2009, 07:09 PM #1
Banned
- Join Date
- Jul 2009
- Posts
- 194
- Thanks
- 0
- Thanked 5 Times in 5 Posts
- Feedback Score
- 0
RSS AJAX Newsticker
This JavaScript tutorial will show you how to combine RSS, AJAX, and JavaScript to create a real-time RSS ticker.
Thanks to AJAX... detail at JavaScriptBank.com - 2.000+ free JavaScript codes
How to setup
Step 1: Use JavaScript code below to setup the script
JavaScript
Step 2: Copy & Paste HTML code below in your BODY sectionCode:<script type="text/javascript" src="rssticker.js"></script>
HTML
Step 3: downloadsCode:CNN: <DIV style="HEIGHT: 100px; border-style: dotted; border-width: 1px; background-color: silver; text-align: left;"> <script type="text/javascript"> //rss_ticker(RSS_id, cachetime, divId, divClass, delay, optionalswitch) new rss_ticker("CNN", 60, "cnnbox", "cnnclass", 200) </script> </DIV> <br><br><br> Each ticker on the page can be invoked independently, for example: <DIV style="HEIGHT: 100px; border-style: dotted; border-width: 1px; background-color: silver; text-align: left;"> <PRE><script type="text/javascript"> //rss_ticker(RSS_id, cachetime, divId, divClass, delay, optionalswitch) new rss_ticker("CNN", 60, "cnnbox", "cnnclass", 2000) </script></PRE> </DIV>
Files
rssticker.js
Similar Threads
-
RSS AJAX Newsticker
By JavaScriptBank in forum JavaScript & AJAXReplies: 0Last Post: 03-16-2010, 05:09 AM -
Help with using Ajax with CF8
By Abina in forum ColdFusionReplies: 1Last Post: 02-02-2010, 11:12 AM -
How to wait until AJAX request is finished
By sunshine in forum JavaScript & AJAXReplies: 0Last Post: 01-04-2010, 11:19 AM -
AJAX Page Content Loader
By JavaScriptBank in forum JavaScript & AJAXReplies: 0Last Post: 11-09-2009, 10:50 AM -
Ajax
By Jenniferlinn in forum JavaScript & AJAXReplies: 3Last Post: 10-12-2009, 08:46 AM




Reply With Quote

