Hi,
I am using qTip on my site and this is how the document ready function looks like :
$.fn.qtip.styles.mystyle = { // Last part is the name of the style
width: 200,
background: '#ebf1ff',
color: 'black',
textAlign: 'center',
border: {
width: 1,
radius: 4,
color: '#AACCEE'
},
tip: 'bottomLeft',
name: 'dark'
}
$('.controlTitleContainer .icon').qtip({
content: $(this).find('.tooltip').html(),
position: {
corner: {
target: 'topRight',
tooltip: 'bottomLeft'
}
},
style: 'mystyle'
});
The first part is only for styling, the second part however is the one that will populate the qtip.
My HTML looks like this :
<div class="controlTitleContainer">
<div class="text">
<label for="ModelViewAd_Title">Titel</label>
</div>
<div class="icon">
<div class="toolTip">MyToolTipTest</div>
</div>
</div>
note : the class toolTip is set to Display : none, and the class="icon" div vill be the one that shows the tooltip
I will have alot of html snippets like this on a page but it will contain diffrent data, what I need is the tooltip to show the current inner html of . Is this possible or do I have to generate a declaration of qtip for every HTML snippet like this?
Pleas Advice
BestRegards
Why not have it like this?
This way, any
div
withclass="tooltip"
will automatically have qTip enabled. That's actually what I did on my project.Here's my test HTML:-