Skip to content

Instantly share code, notes, and snippets.

@kirillsulim
Created April 4, 2014 14:50
Show Gist options
  • Save kirillsulim/9976241 to your computer and use it in GitHub Desktop.
Save kirillsulim/9976241 to your computer and use it in GitHub Desktop.
function hab_hide(el) {
$(arr[el]).parent().parent().children('.reply_comments').hide()
}
function hab_show(el) {
$(arr[el]).parent().parent().children('.reply_comments').show()
}
var arr = $('.comment_item .comment_body .info');
for(i=0; i < arr.length; i++) $(arr[i]).children('.clear').before(
'<div><a href="javascript:hab_hide(' + i + ');" alt="Свернуть комментарии">[-]</a>' +
'<a href="javascript:hab_show(' + i + ');" alt="Развернуть комментарии">[+]</a></div>'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment