"Script to show hidden items if on click index is eqaul to"
Bootstrap 4.1.1 Snippet by anmolv886

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ---------->
jQuery(document).ready(function(){ jQuery('.explore_left .elementor-column:first-child').addClass('active'); jQuery('.explore_left .elementor-column').each(function (){ jQuery(this).click(function(){ jQuery('.explore_left .elementor-column').removeClass('active'); jQuery(this).addClass('active'); var index = jQuery(this).index(); jQuery('.explore_right').hide(); jQuery('.explore_right').eq(index).show() }) }) });

Related: See More


Questions / Comments: