qtip の複数のインスタンスに対して一連のデフォルト プロパティを設定しようとしていますが、機能していません。それは可能ですか、それとも何か間違っていますか?
共通プロパティ
var qtipDefaults = {
show: 'mouseover',
hide: 'mouseout',
position: {
corner: {
target: 'bottomLeft',
tooltip: 'topLeft'
}
},
style: {
name: 'dark'
}
};
インスタンス化 # 1
$('#sbt_name').qtip({
content: 'This is the Name of the Course'
}).extend(qtipDefaults);
インスタンス化 # 2
var sbt_name = $('#sbt_name').qtip({
content: 'This is the Name of the Course'
});
$.extend(sbt_name, qtipDefaults);