jQuery UI has a terrific floating window. What's cool about the jQuery UI version is that you can also pack it using the UI theme manager, which means less styling time.
Take a look here: jQuery Dialog Examples
All that is required is to create a container (possibly a div) and one line of code. Something like that:
<div id="example">I'm in a dialog!</div> $("#example").dialog();
Here's the documentation: jQuery UI Dialog Documentation
source share