script.js 454 B

1234567891011121314
  1. jQuery(document).ready(function() {
  2. var commentsDiv = $('#comments');
  3. if (commentsDiv.length) {
  4. $(commentsDiv).hide();
  5. $('.toggle-comments').on('click', function(e) {
  6. e.preventDefault();
  7. $(commentsDiv).toggle('slow', function() {
  8. var anchor = $('.toggle-comments');
  9. var anchorText = anchor.text() == 'Hide Comments' ? 'Show Comments' : 'Hide Comments';
  10. $(anchor).text(anchorText);
  11. });
  12. });
  13. }
  14. });