Current File : /home/quantums/theartoflevelingup.net/wp-content/plugins/pretty-link/js/admin_groups.js
jQuery(document).ready(function($) {
  $('.group_actions').hide();
  $('.edit_group').hover(
    function() {
      $(this).children(".group_actions").show();
    },
    function() {
      $(this).children(".group_actions").hide();
    }
  );
});