# powerkit/2.4.4/assets/js/_scripts.js

Powerkit – Supercharge your WordPress Site, version 2.4.4. 18 lines.

- Page: https://pluginprobe.com/plugins/powerkit/2.4.4/code/assets/js/_scripts.js
- Raw: https://pluginprobe.com/plugins/powerkit/2.4.4/raw/assets/js/_scripts.js
- Modified: 2020-12-30T06:28:26+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/powerkit/2.4.4/code/assets/js/_scripts.js#L10-L20`.

```javascript
/**
 * Global Powerkit Scripts
 */

jQuery( document ).ready( function( $ ) {

	// ToolTip.
	$( '.pk-tippy' ).each(function( index, element ) {
		tippy( element, {
			arrow: true,
			interactive: true,
			placement: 'bottom',
			content: $( element ).find( '.pk-alert' ).html()
		});
	});

} );

```
