JSFiddle - React, Tailwind, and code Playground

by hslincoln

JavaScript

// Start checking on page load make sure its expanded first

    jQuery(document).ready (function(){
        if (jQuery("#brand img").attr("src") == "http://jmldirect.uat.venda.com/content/ebiz/shop/resources/images/bkg-dropdown.png") {
            jQuery("#brand img").trigger("click");
        }

        if (jQuery(".boxContent #parentCategoryName img").attr("src") == "http://jmldirect.uat.venda.com/content/ebiz/shop/resources/images/bkg-dropdown.png") {
            jQuery(".boxContent #parentCategoryName img").trigger("click");
        }

    });

    // Change order of the drops to Categories THEN Brands
    jQuery("#brand").insertAfter("#parentCategoryNameresults");
    jQuery("#brandresults").insertAfter("#brand");