I have the following on a plugin:
$(this).mouseenter(function (e) {
var this = $(this);
var text = "<div class="Text">" + options.Text + "</div>"
$("body").append(text);
})
How to align "text" to "this" before adding it to body on the following positions: TopCenter, BottomCenter, RightMiddle or LeftMiddle.
Thank You!