I used the jQuery Bubblepopup plugin for tooltip tips. BubblePopup is created on the mousehover by div, this div is created dynamically by the jquery append method. All jQuery functionality works fine, but it does not work without warning.
$(document).ready(function () { //alert($('#mapcontainer a.fixed').length); window.setTimeout(function () { $('#mapcontainer div.fixed').CreateBubblePopup({ position: 'top', align: 'center', divStyle: { color: '#000000', margin: '-20px 0px 0px 0px' }, innerHtml: 'Add or change location', innerHtmlStyle: { color: '#FFFFFF', 'text-align': 'center' }, themeName: 'all-grey', themePath: 'images/jquerybubblepopup-theme' }); }, 50); });
- div, anchor, fixed class created by jquery append method
source share