$(document).ready(function() { $('.tip').each(function(){ var $this = $(this); var id = $this.attr('rel'); $this.qtip({ content:{ text: '', ajax:{ url: 'https://darkmahou.org/wp-admin/admin-ajax.php', type: 'POST', loading: false, data: 'id=' + id + '&action=tooltip_action' } }, show: { event: 'mouseover', delay: 500, }, hide: { delay: 200, fixed: true }, position: { target: 'mouse', adjust: { mouse: false }, viewport: $(window) } }); }); });