<?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-3977-2026061701</guid>
<title><![CDATA[R2755 (Hardy Bros.)]]></title>
<description><![CDATA[Flyweight fly reel. Diameter 2 1/2 inches.  Weighing 2 5/8 oz. Line weight 2/3. Smooth aluminum foot. Two screw nickel silver line guard. RHW/LHW reversible. Includes suede pouch. Made by Hardy for Abercrombie and Fitch Co. Very good condition. ]]></description>
<link>https://ricksrods.com/product_view.asp?pID=3977</link>
<pubDate>Wed, 17 Jun 2026 00:00:00 -0600</pubDate>
</item>

<item>
<guid isPermaLink="false">RR-RECENT-4029-2026062601</guid>
<title><![CDATA[GF558 (Sage)]]></title>
<description><![CDATA[Sage Model VPS486-3. 8&#39;6&#34;, 3 piece rod. Line weight 4. Reverse half wells cork grip. Up-locking reel seat over wood insert. Very good condition. Includes original cloth bag and tube.]]></description>
<link>https://ricksrods.com/product_view.asp?pID=4029</link>
<pubDate>Fri, 26 Jun 2026 00:00:00 -0600</pubDate>
</item>

<item>
<guid isPermaLink="false">RR-RECENT-4030-2026062901</guid>
<title><![CDATA[R2768 (Hardy)]]></title>
<description><![CDATA[Perfect 3 3/8 inch diameter. Spare Spool ]]></description>
<link>https://ricksrods.com/product_view.asp?pID=4030</link>
<pubDate>Mon, 29 Jun 2026 00:00:00 -0600</pubDate>
</item>

</channel>
</rss>