jQuery pop.js Example
Below is an example of the simplest use case, utilizing default values for all of the built-in options. Simply add a title, body content, and the text to be displayed in the dismissal button and the rest is done for you.

Source Code:
$("#defautdemo").click(function() {
    simplePopup({
        'pop-title':'Pop Demo', 
        'pop-body': 'This is a demonstration of a simple popup. The point is to present information to the user and provide a way to dismiss the popup.', 
        'btn-text': 'Dismiss',
        'auto-wrap': 35,
    });
});