So John,you would have to add the second code for all feeds in example 3 to clear any feed selected?
The whole idea of a checkbox to select feeds is interesting
So John,you would have to add the second code for all feeds in example 3 to clear any feed selected?
The whole idea of a checkbox to select feeds is interesting
Thanks,
Bud
Yes. Oh and please don't interrupt another person's thread with your own question. Start a new thread. And, if you like, refer back to the original thread.
Which was:
http://www.dynamicdrive.com/forums/s...Displayer-v2-0
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
So,is that a yes,that has to be added for each feed to deselect it
Thanks,
Bud
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
no need to be rude-
I did read but with your past remarks I wanted to be sure the yes was in reference to my question and not the other thread....................
Thanks,
Bud
I think you think too much. But just to be as clear as I can be, to remove a feed from a gfeedfetcher instance, use the function as shown with the feed's object (the variable name you gave it when you created it):
as the first parameter, and the label of the feed you want removed:Code:var cssfeed=new gfeedfetcher("example1", "example1class", "")
as the second.Code:cssfeed.addFeed("CSS Drive", "http://www.cssdrive.com/index.php/news/rss_2.0/") //Specify "label" plus URL to RSS feed
So to remove that feed from that gfeedfetcher instance, do:
removefeed(cssfeed, 'CSS Drive');
And yes, each time you wish to do something like that, you must use the removefeed function to do it.
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Bookmarks