Qtip 2 Themeroller
qTip говорит, что он может работать с jQuery UI themerollers, но, похоже, он не работает для меня.
Вот мой сценарий src:
и вот код Javascript:
<script type="text/javascript">
// Create the tooltips only when document ready
$(document).ready(function()
{
// Use the each() method to gain access to each elements attributes
$('area').each(function()
{
$(this).qtip(
{
content: {
text: $(this).attr('title'),
},
style: {
classes: 'qtip-light',
widget:true
},
});
});
});
</script>
может кто-нибудь помочь, пожалуйста.
Спасибо.