As I delve into the world of JavaScript frameworks, one common trend I've noticed is that elements like dialogs, tooltips, and alerts usually appear at the end of the body tag.
With my own implementation of these UI elements, I am determined to make it foolproof. I find myself utilizing techniques such as using a transparent iframe to overlay embedded objects in older browsers in order to ensure smooth functionality.
However, I can't help but wonder about the potential restrictions I might encounter if I choose to place my dialog/tooltip deep within the DOM tree with a fixed position. Could there be unseen dangers to this approach, especially considering that major frameworks tend to avoid it?
Despite any challenges, my goal is to provide support for IE8 and beyond.