up vote 1 down vote favorite
1
share [g+] share [fb]

I'd like to make a very simple jquery box come up saying "Sorry, that blog post could not be found."

I don't want anything very advanced... How should I go about this?

link|improve this question

50% accept rate
1  
I think this question has been done to death, just do a SO search on jQuery popup, facebox, lightbox, etc. and you'll be in business. – karim79 Oct 12 '09 at 23:17
feedback

3 Answers

up vote 3 down vote accepted

You can check out these nice custom alert and confirmation boxes. You can customize them.

link|improve this answer
Thank you, this is wonderful! – Justin White Oct 12 '09 at 23:26
feedback

The jQuery plug-in Impromptu is a good simple choice for a pop-up that looks a lot nicer than a standard JS alert

http://trentrichardson.com/Impromptu/index.php

There are instructions on the site that will help you in your implementation.

link|improve this answer
feedback

Like the jQuery UI Dialog? Here's a Working Demo

$('div.no-post').dialog({        
    buttons: { 
        "Ok": function() { 
            $(this).dialog("close"); 
        } 
    },
    title: "Post Not Found",
    modal: true,
    draggable: false,
    resizable: false
});

<div class="no-post">
    Sorry, that blog post could not be found.
</div>

or I've always liked the BlockUI plugin

link|improve this answer
It should be noted that if you decided to go this route in addition to vanilla jquery, you'll also need to include the jquery-ui.js and jquery-ui.css file in order for this to work. On the plus side you can use the jquery theme roller to make it look exactly like you want. – T. Stone Oct 13 '09 at 4:33
@T.Stone- Good point. If you're looking to use a number of UI components in your site then using the UI plugin is probably a good choice. You can specify which plugins to include in the jquery-ui.js, so you don't need to include ones that you're not going to use. Themeroller does make it easy to style the UI plugins too :) – Russ Cam Oct 13 '09 at 8:54
feedback

Your Answer

 
or
required, but never shown

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