Timothy's answer was workable. See my comment afterward for the necessary addition. This is a copyI copied and pastepasted from Timothy Khouri's answer with my comment attached:
It took me reading the question about 100 times to understand what you meant by
"I'll need it to pop up, of course, where the textbox is located...just as a javascript alert box would."
I think you mean that if you were to scroll down partway through the page, and then call alert, that it would be centered to your current View Port (the stuff you see on the screen)... and that you want this new prettied up dialog box to do the same.
The answer is - "Yes"... Yes, jQuery will center the dialog box right there at your current view port just like an alert box would be.
You need to download and reference the main jQuery library AND ALSO the latest jQueryUI library AND ALSO one jQuery CSS theme.
Then it should be as easy as:
$("<p>Yo, G Dog<p>").dialog({ modal: true });
Hey, Pimp. So yourTimothy's code worksworked almost perfectly. I had to do some messing around till I found the reason why it was causing two dialogs to open. No answers from Google searching. Just experimentation helped me to see that each HTML tag inserted into the dialog opened its own dialog, for some reason. The way to fix this was to contain all HTML tags within a div. Now not even the blank dialog occurs.
If you don't know what I'm talking about, use your own code and see what occurs. THEN, put more HTML tags within the parentheses. Example:
("<h3>Attention></h3><p>Yo, G Dog</p>").dialog({ modal: true }); Finally, place the h3 and p within a div and see the cool results:
("<div><h3>Attention></h3><p>Yo, G Dog</p></div>").dialog({ modal: true }); This latter piece of code will only display one dialog. :) Thanks for answering!
James