
            <script>
                document.onreadystatechange = function () {
                    if (document.readyState === 'complete') {
                        // Add-to-Cart from compare page.
                        $('.add_to_cart_button').click(function(e) {
                            const productId = $(e.target).attr('data-product_id');
                            const price = $('thead td[data-product-id="'+ productId +'"] .price .amount bdi').text().replace('$', '') ?? '';
                            var brand = '';

                            $('tbody th').each(function() {
                                if ('brand' === $(this).text().trim().toLowerCase()) {
                                    brand = $(this).parent().find('td[data-product-id="'+ productId +'"]').text().trim() ?? '';
                                }
                            });

                            // Prevent continue to cart.
                            e.preventDefault();
                            // Get selected values.
                            const args = [
                                'name=' + $(e.target).parent().find('h3').text() ?? '',
                                'brand=' + brand,
                                'sku=' + $(e.target).attr('data-product_sku') ?? '',
                                'base-price=' + price,
                                'quantity=' + $(e.target).attr('data-quantity'),
                            ];

                            // Redirect customer.
                            window.location.href = 'https://selfcare.mycellularone.com/#/redirect?' + args.join("&");
                        });
                    }
                }
            </script>

			<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://nakedmobile.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://nakedmobile.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://nakedmobile.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://nakedmobile.com/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://nakedmobile.com/wp-sitemap-posts-cosu_careers-1.xml</loc></sitemap><sitemap><loc>https://nakedmobile.com/wp-sitemap-posts-cosu_locations-1.xml</loc></sitemap><sitemap><loc>https://nakedmobile.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://nakedmobile.com/wp-sitemap-taxonomies-post_tag-1.xml</loc></sitemap><sitemap><loc>https://nakedmobile.com/wp-sitemap-taxonomies-product_cat-1.xml</loc></sitemap><sitemap><loc>https://nakedmobile.com/wp-sitemap-taxonomies-product_tag-1.xml</loc></sitemap><sitemap><loc>https://nakedmobile.com/wp-sitemap-taxonomies-product_shipping_class-1.xml</loc></sitemap><sitemap><loc>https://nakedmobile.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
