Я создал плагин, который позволит вам сделать это. Вы можете найти его там: https://github.com/devmnrj/myAlert
Вот небольшая демонстрация кода JS:
<script type="text/javascript">
var myAlert = new MyAlert();
window.onload = function(){
$("#anchor").on("click", function(e){
myAlert.show({'x':e.pageX, 'y':e.pageY}, {
'header': "<em>Hello!</em><br/><small>I am a header</small>",
'body': "I am the body of the dialog, so i should be bigger. Yeah, more text here. I can also update me <a>here</a>.",
'footer': "footer: goodbye!"
});
});
};
</script>