<?xml version='1.0' encoding='ISO-8859-1'?>
<html> 

<head> 
	<title> 
		Rick's Rods 
	</title> 
	
</head> 
</html>

<script>

function saveCheckboxValues() {
    const checkboxes = document.querySelectorAll('input[type="checkbox"]');
    let checkedValues = [];

    checkboxes.forEach(function (checkbox) {
        if (checkbox.checked) {
            checkedValues.push(checkbox.value);
        }
    });

    localStorage.setItem('checkedValues', JSON.stringify(checkedValues));
}

document.getElementById('myForm').addEventListener('submit', function (event) {
    event.preventDefault();
    saveCheckboxValues();
});

    function loadCheckboxValues() {
    const checkedValues = JSON.parse(localStorage.getItem('checkedValues'));

    if (checkedValues) {
        const checkboxes = document.querySelectorAll('input[type="checkbox"]');
        checkboxes.forEach(function (checkbox) {
            if (checkedValues.includes(checkbox.value)) {
                checkbox.checked = true;
            }
        });
    }
}

loadCheckboxValues();
</script>

<rss  xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<atom:link href="https://ricksrods.com/recentFeed/" rel="self" type="application/rss+xml"/>
<title>Rick's Rods - New Items Feed</title>
<link>https://ricksrods.com/recent.asp</link>
<description>The latest items offered for sale at Rick's Rods.</description>
<language>en-us</language>
<copyright>Copyright (c) 2023 ricksrods.com</copyright>

<item>
<guid isPermaLink="false">RR-RECENT-3585-2026080401</guid>
<title><![CDATA[R2568 (Hardy Bros.)]]></title>
<description><![CDATA[Brunswick Cascapedia fly reel.  Limited edition 186/500.  Crafted by I. Evans. Size 1/0.  Diameter measures 2 7/8 inches.  LHW Left hand wind.  Trout weight 4. This reel was spooled with Cortland Sylk.   Made in Alnwick, England.  Includes original black leather pouch and box. Gently fished. Very good condition. Price reduced]]></description>
<link>https://ricksrods.com/product_view.asp?pID=3585</link>
<pubDate>Tue, 04 Aug 2026 00:00:00 -0600</pubDate>
</item>

<item>
<guid isPermaLink="false">RR-RECENT-3586-2026080401</guid>
<title><![CDATA[R2569 (Hardy Bros.)]]></title>
<description><![CDATA[Brunswick Cascapedia fly reel.  Limited edition 495/500.  Crafted by D. Brown. Size 1/0. Diameter measures 2 7/8 inches.  LHW Left hand wind.  Trout weight 4.    Made in Alnwick, England.  Includes original black leather pouch and box. This reel has never been lined or fished.]]></description>
<link>https://ricksrods.com/product_view.asp?pID=3586</link>
<pubDate>Tue, 04 Aug 2026 00:00:00 -0600</pubDate>
</item>

<item>
<guid isPermaLink="false">RR-RECENT-3623-2026080701</guid>
<title><![CDATA[BF2110 (Wright and McGill)]]></title>
<description><![CDATA[7&#39;, 2/2 Granger Aristocrat GA7030. Line weight 4. Hammer handle cork grip. Tan silk thread wraps with brown tipping. Nickel silver ferrule size 12. Nickel silver up-locking reel seat. Includes original cloth bag and labeled aluminum tube. The cane is sound, however there are several varnish chips. Condition is very good. ]]></description>
<link>https://ricksrods.com/product_view.asp?pID=3623</link>
<pubDate>Fri, 07 Aug 2026 00:00:00 -0600</pubDate>
</item>

</channel>
</rss>