0

Uncaught ReferenceError: options is not defined が発生しました。

コードは次のとおりです。

// Create the tooltips only when document ready
$(document).ready(function()
{
    // MAKE SURE YOUR SELECTOR MATCHES SOMETHING IN YOUR HTML!!!
    $('a').qtip({
        content: {
            title: {
                text: 'text',
                button: 'close'
            },
            text: 'asfaf'
        },
        hide: {
            fixed: true,
            delay: 300
        },
        position: {
            my: 'left center',
            at: 'right center',
            target: 'event'
        }
    });
});

http://jsfiddle.net/H4aTZ/2/にアクセスすることもできます。

4

1 に答える 1