<?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>

</channel>
</rss>