Which jquery modal plugin does stackoverflow uses (ie) When i try to close a question? Any suggestion..
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
SO doesn’t use a plugin, it’s built just for SO, they just create a
<div>and stick it in the page, with the following styling:They just insert the created
<div class="popup">wherever it goes in the page, in this case it’s appended to the parent of the clickedclosed-question-nnnnnnlink (the.post-menudiv).Aside from the internals, which would undoubtedly be different anyway, this is all you need to make a modal, you can view a quick demonstration here.