Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(".btn").click(function () {
  2. if ($('tr#' + $(this).data("href")).is(":visible")) {
  3. $('tr#' + $(this).data("href")).remove();
  4. } else {
  5. $(this).closest('tr').after('<tr id="' + $(this).data("href") + '"><td colspan="' + ($(this).closest("tr").find("td").size()) + '">' + $('#' + $(this).data("href")).html() + '</td></tr>');
  6. }
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement