vote up 8 vote down star
31

I would like to add a popup message like the one that appears on stackoverflow when I am not logged in and I try to use voting buttons.

What is the best method for achieving that? Is it done using a jquery library?

flag
2  
View the source! – Josh Stodola Mar 18 at 17:10
1  
i did that, and it seemed to refer to question.min.js I could not find that plugin so I asked the question – Puneet Mar 18 at 17:18

6 Answers

vote up 36 vote down

EDIT: The code below shows how to replicate the bars that show at the top of the screen when you get a new badge, first come to the site, etc. For the hovering dialogs that you get when you try to comment too fast, vote for your own question, etc, check out this question where I show how to do this or just go straight to the example.


Here's how Stackoverflow does it:

This is the markup, initially hidden so we can fade it in:

<div id='message' style="display: none;">
    <span>Hey, This is my Message.</span>
    <a href="#" class="close-notify">X</a>
</div>

Here are the styles applied:

#message {
    font-family:Arial,Helvetica,sans-serif;
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    z-index:105;
    text-align:center;
    font-weight:bold;
    font-size:100%;
    color:white;
    padding:10px 0px 10px 0px;
    background-color:#8E1609;
}

#message span {
    text-align: center;
    width: 95%;
    float:left;
}

.close-notify {
    white-space: nowrap;
    float:right;
    margin-right:10px;
    color:#fff;
    text-decoration:none;
    border:2px #fff solid;
    padding-left:3px;
    padding-right:3px
}

.close-notify a {
    color: #fff;
}

And this is javascript (using jQuery):

$(document).ready(function() {
    $("#message").fadeIn("slow");
    $("#message a.close-notify").click(function() {
        $("#message").fadeOut("slow");
        return false;
    });
});

And voila. Depending on your page setup you might also want to edit the body margin-top on display.

Here is a demo of it in action.

link|flag
Re-reading the question I don't think this is what the Op wanted. I think he's looking for the boxes that appear as notices around the site near whatever you do. I guess I'll leave this up anyways. – Paolo Bergantino Mar 18 at 17:30
Paolo, Thanks for leaving this up! I think this may work quite a bit better than what I was using for this action. – Jayrox Mar 18 at 17:58
While not the answer, equally helpful :P – rball Mar 18 at 18:05
been wondering how to do this for a while now. Thanks! – ranomore Apr 17 at 14:58
+1 for the demo – Alex B May 18 at 14:49
vote up 0 vote down

As a curious developer, I would view the source here and see how it works and then adapt it to my project. This is the best way to learn.

link|flag
This website is built using ASP.NET (ASP.NET MVC to be more specific) which means that he can't actually see whats going on because there is code running on the server. Also they linked to their .js files on the server so he wouldn't be able to see them either. – Lucas McCoy May 13 at 20:39
1  
All of the functionality he is referring to is on the client-side, and he has access to all the code he needs to replicate it. Im not sure what you are talking about. – Josh Stodola May 14 at 14:34
vote up 0 vote down

There is similar question. You might want to check that as well.

link|flag
Those answers are too vague. – Jim G. Aug 13 at 17:43
vote up 1 vote down

Using the ModalPopup in the AJAX control toolkit is another way you can get this effect.

link|flag
please comment the downvote, using a modal popup is perfectly valid for what the original question asked. – patjbs Mar 18 at 17:28
vote up 3 vote down

Also checkout jQuery UI Dialog

link|flag
vote up 2 vote down

I use jqModal, easy to use and you can achieve some great effects

link|flag

Your Answer

Get an OpenID
or

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