Last active
December 23, 2021 05:07
-
-
Save ridhotegar/4f0facaf0ded14e378e140e3dd107554 to your computer and use it in GitHub Desktop.
Simple show hide jquery
This file contains 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
function deskripsi(id) { | |
if ( $('#deskripsi_'+id).is(':visible') ) { | |
$('#deskripsi_'+id).hide() | |
} else { | |
$('.deskripsi').hide() | |
$('#deskripsi_'+id).show() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment