Your HostICan Community  


Go Back   Your HostICan Community > Programming & Design > Javascript / Java Applets

Javascript / Java Applets Are you a JavaScript guy? Do you need help with JavaScript? This is the place to talk about anything related to Java.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 08-20-2009, 05:20 PM
nss nss is offline
Junior Member
 
Join Date: Aug 2009
Posts: 3
Default RSS feeds on the pages from my hosting account

Hello!
I wonder if it is possible to read an external RSS document using only JavaScript without PHP? Is it possible to display RSS feeds on the pages from my hosting account?
Reply With Quote
  #2  
Old 08-20-2009, 06:07 PM
OuTpOsT OuTpOsT is offline
Junior Member
 
Join Date: Jan 2009
Location: Neverland
Posts: 7
Default Re: RSS feeds on the pages from my hosting account

HTML Code:
<script>
function processStateChange(){
  statusDiv = document.getElementById("stats");
  if (req.readyState == 0){ statusDiv.innerHTML = "UNINITIALIZED"; }
  if (req.readyState == 1){ statusDiv.innerHTML = "LOADING"; }
  if (req.readyState == 2){ statusDiv.innerHTML = "LOADED"; }
  if (req.readyState == 3){ statusDiv.innerHTML = "INTERACTIVE"; }
  if (req.readyState == 4){
    statusDiv.innerHTML = "COMPLETE";
    statusDiv.innerHTML = req.responseText;
    }
}
req = new ActiveXObject("Msxml2.XMLHTTP");
if (req) {
    req.onreadystatechange = processStateChange;
    req.open("GET", "http://URL", true);
    req.send();
}
</script>
There is another option using AJAX. You can generate JavaScript code for link to the PHP file that can made parsing to RSS document.
Reply With Quote
Reply

Tags
account, feeds, hosting, pages, rss

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 05:43 AM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.

Copyright © 2003 - 2008 HostICan. All Rights Reserved.