Tabbing

PHOTO EMBED

Tue Apr 02 2024 06:57:49 GMT+0000 (Coordinated Universal Time)

Saved by @divyasoni23 #jquery #js

$('.our-approach__row:first').addClass('active');
		$('.our-approach__content').hide();
		$('.our-approach__content:first').show();

		$('.our-approach__row').click(function () {
			$('.our-approach__row').removeClass('active');
			$(this).addClass('active');
			$('.our-approach__content').hide();

			var activeTab = $(this).find('a').attr('href');
			$(activeTab).fadeIn(700);
			return false;
		});
content_copyCOPY