Alert! Alert!

A simple JavaScript library for generating growl-style notifications. No framework necessary.

Sample Usage

Trigger new alerts with this simple API

var type = 'info',
    message = '<p>Something you outta know!</p>',
    config = { timeout: 7000 };

    Alert.alert(type,message, config);

Alert options include: 'info', 'success', 'warning', and 'error', which are color-coded to match their respective status.