Jquery simple popup

I would like to make a very simple jquery window: "Sorry, this blog was not found".

I don't need anything very advanced ... How do I do this?

+2


source to share


3 answers


You can check out these beautiful custom alert and confirmation windows. They can be customized.



+4


source


JQuery Impromptu plugin is a good choice for a popup that looks much better than the standard JS alert

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



There are instructions on the site to help you with the implementation.

+4


source


How does 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 always liked the BlockUI plugin

+3


source







All Articles