# easy-elements/1.5.0/widgets/table/js/table.js

Easy Elements for Elementor – Addons &amp; Website Templates, version 1.5.0. 17 lines.

- Page: https://pluginprobe.com/plugins/easy-elements/1.5.0/code/widgets/table/js/table.js
- Raw: https://pluginprobe.com/plugins/easy-elements/1.5.0/raw/widgets/table/js/table.js
- Modified: 2026-06-17T10:35:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/easy-elements/1.5.0/code/widgets/table/js/table.js#L10-L20`.

```javascript
(function($){
    $(document).ready(function(){
        $('.easyel-tooltip').on('mouseenter click', function(e){
            e.stopPropagation();
            $(this).addClass('show');
        });

        $('.easyel-tooltip').on('mouseleave', function(){
            $(this).removeClass('show');
        });

        $(document).on('click', function(){
            $('.easyel-tooltip').removeClass('show');
        });
    });
})(jQuery);

```
