Note that there are some explanatory texts on larger screens.

plurals
  1. POCannot parse stackoverflow feed with this jquery code
    text
    copied!<p>Using</p> <p><a href="http://designshack.net/tutorialexamples/rss-feed-list/index.html" rel="nofollow noreferrer">http://designshack.net/tutorialexamples/rss-feed-list/index.html</a> (demo for tutorial <a href="http://designshack.net/articles/javascript/build-an-automated-rss-feed-list-with-jquery/" rel="nofollow noreferrer">http://designshack.net/articles/javascript/build-an-automated-rss-feed-list-with-jquery/</a>)</p> <p>I just added <a href="https://stackoverflow.com/feeds">https://stackoverflow.com/feeds</a> to the list but it isn't parsed whereas the others are parsed correctly why ?</p> <pre><code>&lt;!doctype html&gt; &lt;html lang="en-US"&gt; &lt;head&gt; &lt;meta charset="utf-8"&gt; &lt;meta http-equiv="Content-Type" content="text/html"&gt; &lt;title&gt;Automated jQuery RSS Feed Demo&lt;/title&gt; &lt;meta name="author" content="Jake Rocheleau"&gt; &lt;link rel="shortcut icon" href="http://designshack.net/favicon.ico"&gt; &lt;link rel="icon" href="http://designshack.net/favicon.ico"&gt; &lt;link rel="stylesheet" type="text/css" media="all" href="css/styles.css"&gt; &lt;script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" language="javascript" src="js/parser.js"&gt;&lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="topbar"&gt;&lt;a href="http://designshack.net"&gt;Back to Design Shack&lt;/a&gt;&lt;/div&gt; &lt;div id="w"&gt; &lt;div id="content"&gt; &lt;h1&gt;Automated jQuery RSS Feed Listing&lt;/h1&gt; &lt;div id="nouperss" class="feedcontainer"&gt;&lt;/div&gt; &lt;hr&gt; &lt;div id="hongkiatrss" class="feedcontainer"&gt;&lt;/div&gt; &lt;hr&gt; &lt;div id="designmodorss" class="feedcontainer"&gt;&lt;/div&gt; &lt;hr&gt; &lt;div id="codropsrss" class="feedcontainer"&gt;&lt;/div&gt; &lt;/div&gt;&lt;!-- @end #content --&gt; &lt;/div&gt;&lt;!-- @end #w --&gt; &lt;script type="text/javascript"&gt; $(function(){ parseRSS('https://stackoverflow.com/feeds', '#stackrss'); parseRSS('http://feeds2.feedburner.com/24thfloor', '#hongkiatrss'); parseRSS('http://feeds.feedburner.com/designmodo', '#designmodorss'); parseRSS('http://feeds2.feedburner.com/tympanus', '#codropsrss') }); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload