I wanted to display a popup dialog in my website.
And I wanted to know what alternatives do I have to do this?
I know the basics that the dialog should be a div that have a fixed or absolute position and that initially is hidden and then its style is changed to block from none, and maybe the top property and left is changed using jQuery to reflect the dynamic size of the div.
So the question is should I be coding Javascript by hand or I should use some library like jQuery.ui to do this? The problem is that jQuery.ui is 200KB and this is too much solely for displaying a dialog.
What alternatives are there besides jQuery.ui?