nashio / jquery.alert

jQuery plugin to display one or multiple stacked alert messages at the bottom of the screen.with (ala growl)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jquery.alert

jQuery plugin to display one or multiple stacked alert messages at the bottom of the screen. (growl style) Can also parse objects

Options:

delay: time in milliseconds before it appears

timeout: time in milliseconds before it closes

stay: bollean to keep the alert forever

message: message to insert in the alert, accepts objects

bg: background color (can use HEX)

txt: text color (can use HEX)

Example:

  $.alert({ 
    message: "Your message goes here, hello :D ", 
    stay : false,
    timeout: 3000,
    delay : 1000, 
    bg : "royalblue",
    txt : "yellow"
  });

Copyright (c) 2013, Ignacio Chavez.

About

jQuery plugin to display one or multiple stacked alert messages at the bottom of the screen.with (ala growl)


Languages

Language:JavaScript 90.8%Language:CSS 9.2%