mirror of
https://github.com/WenPai-org/wpicp-license.git
synced 2025-08-03 05:13:20 +08:00
9 lines
No EOL
327 B
JavaScript
9 lines
No EOL
327 B
JavaScript
jQuery(document).ready(function($) {
|
|
$('.wpicp-tabs .nav-tab').on('click', function(e) {
|
|
e.preventDefault();
|
|
$('.wpicp-tabs .nav-tab').removeClass('nav-tab-active');
|
|
$(this).addClass('nav-tab-active');
|
|
$('.wpicp-tabs .tab-content').hide();
|
|
$($(this).attr('href')).show();
|
|
});
|
|
}); |