I am using jQuery qTip2 within an iframe but since I am restricted to the size of the iframe width and height, is there anyway I could have the content actually appear on top of the iframe, i.e. within the parent window of the iframe and not within the actual iframe itself?
In this way, I am not restricted within the iframe size.
This is the current code that I am using as part of the 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
}
});
});