Created
July 15, 2022 10:54
-
-
Save wibawasuyadnya/800dd77939ee9246b99ff51294e4650d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var $ = jQuery; | |
$(document).ready(function(){ | |
//default | |
$('.text-details').hide(); | |
$('.text-details.active').show(); | |
//after click | |
$(".tabmenu").on("click", function(){ | |
var dataId = $(this).attr("data-tab"); | |
//for text | |
$('.text-details').fadeOut(0).removeClass('active'); | |
$('#text-'+dataId).fadeIn(400).addClass('active'); | |
//for tab | |
$('.tabmenu').removeClass('active'); | |
$(this).addClass('active'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment