Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. $(".panel-heading").parent('.panel').hover(
  2. function() {
  3. $(this).children('.collapse').collapse('show');
  4. }, function() {
  5. $(this).children('.collapse').collapse('hide');
  6. }
  7. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement