setting main level brand clickable to url if they don't have sub menus
$('.glm-rv-brand').on("click", function(){
window.location = $(this).data('url');
})
+ $('.manufacturer-brand').each(function(){
+ let url = $(this).children('a').attr('href');
+ if( $(this).children('ul').length <= 0 ){
+ // $(this).attr('data-url', url);
+ $(this).on("click", function(){
+ window.location = url;
+ })
+ }
+
+ })
}
});
$('.glm-rv-brand').on("click", function(){
window.location = $(this).data('url');
})
+ $('.manufacturer-brand').each(function(){
+ let url = $(this).children('a').attr('href');
+ if( $(this).children('ul').length <= 0 ){
+ // $(this).attr('data-url', url);
+ $(this).on("click", function(){
+ window.location = url;
+ })
+ }
+
+ })
}
});