Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Just a regular box on a page. When the user clicks the close button , it disappears.

share|improve this question
2  
Sounds like a nice story – Harmen Jan 16 '11 at 20:15

4 Answers

up vote 1 down vote accepted

jQueryUI has a pretty well featured dialog box:

jQuery UI - Dialog

There's also blockUI:

jQuery BlockUI Plugin (v2)

share|improve this answer

You mean like jQueryUI dialogs?

share|improve this answer

No need for a plugin.

$('#box a.close').click(function(){
  $(this).closest('#box').remove();
});
share|improve this answer

Is it really that hard to implement in JavaScript?

<a onclick="this.parentNode.parentNode.removeChild(this.parentNode);">X</a>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.