iframe 内で jQuery qTip2 を使用していますが、iframe の幅と高さのサイズに制限されているため、コンテンツを実際に iframe の上、つまり iframe の親ウィンドウ内ではなく、iframe の上に表示することはできますか?実際のiframe自体?
このように、私は iframe サイズ内に制限されません。
これは、iframe の一部として使用している現在のコードです。
$(document).ready(function() {
$('img[title]').qtip({
content: {
text: false, // Use each elements title attribute
title: {
text: 'Error',
button: 'Close'
}
},
hide: {
event: false
},
style: {
classes: 'ui-tooltip-dark ui-tooltip-rounded',
height: 5,
width: 500
},
position: {
my: 'bottom right',
at: 'top left'
}
});
});