
<script type="text/javascript">
jQuery(document).ready(function($) {
    $('#wss-live-search-input').on('keyup', function() {
        var searchTerm = $(this).val();
        var resultsDiv = $('#wss-search-results-dropdown');

        if (searchTerm.length < 3) {
            resultsDiv.hide();
            return;
        }

        $.ajax({
            url: 'https://indiatradecom.in/wp-admin/admin-ajax.php', // Better way to get the URL
            type: 'GET',
            data: {
                action: 'live_search',
                term: searchTerm
            },
            success: function(response) {
                if (response.length > 0) {
                    var html = '<ul style="list-style:none; margin:0; padding:0; border:1px solid #ddd; background:#fff;">';
                    $.each(response, function(index, product) {
                        html += '<li style="padding:10px; border-bottom:1px solid #eee; display:flex; align-items:center;">';
                        html += '<img src="' + product.img + '" style="width:40px; margin-right:10px;">';
                        html += '<a href="' + product.url + '" style="text-decoration:none; color:#333;">' + product.title + '</a>';
                        html += '<span style="margin-left:auto; font-weight:bold;">' + product.price + '</span>';
                        html += '</li>';
                    });
                    html += '</ul>';
                    resultsDiv.html(html).show();
                } else {
                    resultsDiv.html('<p style="padding:10px;">No products found.</p>').show();
                }
            }
        });
    });

    $(document).click(function(e) {
        if (!$(e.target).closest('.wss-search-wrapper').length) {
            $('#wss-search-results-dropdown').hide();
        }
    });
});
</script>

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