HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/shootinschool/wp-content/plugins/logos-showcase/js/tooltip.js
jQuery(document).ready(function($){

		//bootstrap tooltip conflict
		//var bsTooltip = $.fn.tooltip.noConflict();
		//$(document).tooltip();

		var toshow = 'title'; 		

		$('.lshowcase-tooltip').tooltip({
		content: function () { return $(this).attr(toshow) },
		close: function( event, ui ) {
			    ui.tooltip.hover(
			        function () {
			            $(this).stop(true).fadeTo(400, 1); 
			            //.fadeIn("slow"); // doesn't work because of stop()
			        },
			        function () {
			            $(this).fadeOut("400", function(){ $(this).remove(); })
			        }
			    );
			  },
		position: {
		my: "center bottom-20",
		at: "center top",
		using: function( position, feedback ) {
		$( this ).css( position );
		$( "<div>" )
		.addClass( "lsarrow" )
		.addClass( feedback.vertical )
		.addClass( feedback.horizontal )
		.appendTo( this );
		}
		}
		});
	

});