PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.5.0
Easy Elements for Elementor – Addons & Website Templates v1.5.0
1.5.3 1.5.2 1.5.1 1.5.0 1.4.9 1.4.6 1.4.7 1.4.8 1.4.5 1.4.4 1.4.3 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 All 47 releases
easy-elements / widgets / table / js / table.js

table.js in Easy Elements for Elementor – Addons & Website Templates 1.5.0, at widgets/table/js/table.js

17 lines 455 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 (function($){
2 $(document).ready(function(){
3 $('.easyel-tooltip').on('mouseenter click', function(e){
4 e.stopPropagation();
5 $(this).addClass('show');
6 });
7
8 $('.easyel-tooltip').on('mouseleave', function(){
9 $(this).removeClass('show');
10 });
11
12 $(document).on('click', function(){
13 $('.easyel-tooltip').removeClass('show');
14 });
15 });
16 })(jQuery);
17