Skip to content

Instantly share code, notes, and snippets.

@az1979
Last active December 30, 2017 09:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save az1979/ae2fdb40c1d3717dfae2e8c167c02a38 to your computer and use it in GitHub Desktop.
Save az1979/ae2fdb40c1d3717dfae2e8c167c02a38 to your computer and use it in GitHub Desktop.
WordPressの記事の一部を折りたたんで表示する方法 – JS
jQuery(function(){
jQuery('[data-slide-contents]').click(function(event) {
event.preventDefault();
var slideContents = jQuery(this).data('slide-contents');
jQuery('#' + slideContents).slideToggle(400);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment