# easy-footnotes/1.1.1/assets/qtip/jquery.qtipcall.js

Easy Footnotes, version 1.1.1. 22 lines.

- Page: https://pluginprobe.com/plugins/easy-footnotes/1.1.1/code/assets/qtip/jquery.qtipcall.js
- Raw: https://pluginprobe.com/plugins/easy-footnotes/1.1.1/raw/assets/qtip/jquery.qtipcall.js
- Modified: 2018-11-25T22:08:12+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-footnotes/1.1.1/code/assets/qtip/jquery.qtipcall.js#L10-L20`.

```javascript
jQuery(document).ready(function($){
	$('.easy-footnote a').qtip({
		prerender: true,
		position: {
	        my: 'top center',  // Position my top left...
	        at: 'bottom center', // at the bottom right of...
	        viewport: $(window)
	    },
	    style: {
		    classes: 'qtip-bootstrap'
	    },
	    hide: {
            fixed: true,
            delay: 400,
            event: 'unfocus blur mouseleave'
		},
		show: {
			event: 'focus mouseenter'
		}
	});
});

```
