File: /home/t/h/a/thanexcelr/www/wp-content/plugins/2j-slideshow/js/admin/list.js
/*
* 2J SlideShow http://2joomla.net/wordpress
* Version: 1.3.12 - 85273
* Author: 2J Team (c)
* Author URI: http://2joomla.net/wordpress
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Date: Sat, 28 Jan 2017 14:08:08 GMT
*/
(function($) {
$('.twoj_slideshow_images.column-twoj_slideshow_images .tooltip').on("mouseenter", function(){
if( $(this).is('.tooltip_needload') ){
$( this).removeClass('tooltip_needload');
twojSlideshowUpdateTooltip( $(this).data('id'), this);
}
});
function twojSlideshowUpdateTooltip( id, elem ){
var data = {
'action': 'twoj_slideshow_get_images_from_post',
'idstring': id
};
jQuery.post(ajaxurl, data, function(response) {
$('.tooltiptext', elem).html(response);
});
}
})(jQuery);