Tagged Questions
0
votes
0answers
6 views
Trouble making FeedEk and webTicker work together
I'm trying to display a RSS feed on a website using both FeedEk and webTicker.
Here is my code:
<div id="rss">
</div>
<script type="text/javascript">
$('#rss').FeedEk({
...
1
vote
2answers
46 views
Convert RSS pubdate string to time and date in jQuery
So I have a String which will be something like Wed, 08 May 2013 11:11:30 GMT. (FYI, it is pulled from an XML RSS file) What I am trying to to is go from the above string to two variables, Wed, 08 May ...
0
votes
1answer
17 views
Click on a DIV to subscribe one of the RSS feeds
I have several RSS feeds on one of my sites. My client asked me to place an RSS icon in the site so if you click on it, you can select which feed you want to subscribe on (the same action when you ...
0
votes
0answers
49 views
Multiple rss feed with jquery mobile
I modified one script i found to post rss feeds on my mobile page.
This is the modified version http://jsfiddle.net/t22QP/1053/
Omar demanded to post the code here :)
// ISCPA added search filter, ...
-1
votes
0answers
19 views
How to consume RSS/XML using jQuery and Ajax
I have been trying to come up with the best solution for consuming an RSS feed via the jQuery.ajax method. My current request code looks like this:
function loadJSON() {
jQuery.ajax({
type:"GET",
...
0
votes
2answers
47 views
Pull content from RSS Feed with jQuery
I have a basic HTML template:
<article>
<h3>Being a Freelance Designer</h3>
<p>Etiam porta sem malesuada magna euismod... <a href="#">Read more</a>
...
0
votes
1answer
38 views
Auto-refresh Javascript For RSS Using Google Feed API
I apologize if the title is trash. What I'd like to do is rather simple in concept... but I'm having a bit of trouble.
I would like to automatically refresh an RSS feed that is displayed using ...
0
votes
0answers
20 views
zRSSFeed adjusting JS output
I'm using zRSSFeed to display a feed with images and it works great, only I'm having some trouble amending the order of the HTML that is output. I want the image to come first. The HTML output is:
...
0
votes
1answer
46 views
How to get the first line of a RSS feed in JavaScript
Okay so I want to get the very first entry in a RSS feed using javascript.
Here's my actual code:
$.get('http://www.pebkac.fr/feed/rss/', function(data) {
var $xml = $(data);
...
-3
votes
0answers
74 views
How to make a local News Feed for my website [closed]
I am working on a college project where we are creating an internal website for college students to interact with each other. This website will be hosted on the college's internal server. I want to ...
0
votes
1answer
85 views
Parse external XML (rss) with javascript?
I want to parse this RSS without Php:
<rss version="2.0">
<channel>
<item>
<title>Test</title>
<link>http://www.test.com</link>
...
0
votes
2answers
31 views
How to add alternating classes to dynamic feed of thumbnail images?
I am bringing a feed of a youtube user's video channel onto a page via two plugins called jYoutube and jGFeed.
jGFeed: http://archive.plugins.jquery.com/project/jgfeed
jYoutube: ...
0
votes
1answer
24 views
rss feed- will this be indexed if done in java [closed]
Does this type of code get indexed if i input on my site? It displays as html but its java? the page is .html not sure if it makes a difference
<script language="JavaScript" ...
1
vote
1answer
76 views
Replace JSON encoded feed value's image src protocol http: with https:
I have a site on https protocol that is consuming via ajax JSONP a wordpress rss feed by google load feed API, and then iterating thru the returned json object to inject content
The issue is that the ...
-2
votes
1answer
90 views
reading RSS by javascript [closed]
how to read RSS data through javascript. Is there any systematic procedure/structure to follow. Please guide
Chaitanya.