<script type="text/javascript">
// Create the tooltips only on document load
$(document).ready(function()
{
// Use the each() method to gain access to each elements attributes
$('a[rel]').each(function()
{
$(this).qtip(
{
content: {
// Set the text to an image HTML string with the correct src URL to the loading image you want to use
text: '<img class="throbber" src="image/throbber.gif" alt="Loading..." />',
url: $(this).attr('rel'), // Use the rel attribute of each element for the url to load
title: {
button: 'Close' // Show a close link in the title
}
},
position: {
corner: {
target: 'bottomMiddle', // Position the tooltip above the link
tooltip: 'topLeft'
},
adjust: {
screen: true // Keep the tooltip on-screen at all times
}
},
show: {
solo: true // Only show one tooltip at a time
},
style: {
tip: true, // Apply a speech bubble tip to the tooltip at the designated tooltip corner
border: {
radius: 2,
color: '#CC6600'
},
background: '#054a4f',
name: 'light', // Use the default light style
width: 450 // Set the tooltip width
}
})
});
});
</script>
แต่พอกดแล้วมันก็นิ่งเฉย เหมือนกับว่า html ที่ถูก add โดย javascript มันไม่สามารถเรียกใช้งานจาก jquery ได้อ่าครับ