Come mai questo codice non è letto su altervista e jsfiddle si? Ho utilizzato anche le seguenti librerie: <script src="http://code.jquery.com/jquery-1.8.3.min.js"></script> & http://code.jquery.com/jquery-1.8.3.js oppure ho provato a anche nella stringa <script type="text/javascript" src="link">; ma senza avere successo come mai?
Codice HTML:
<a>Hover over me</a>
<div class="tooltiptext">
A clickable <a href="http://google.com">link</a>
</div>
<script type="text/javascript">
$(document).ready(function () {
$('a').each(function () {
$(this).qtip({
content: $(this).next('.tooltiptext'),
hide: {
fixed: true,
delay: 300
}
});
});
});
</script>