Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 731 Bytes

README.md

File metadata and controls

39 lines (23 loc) · 731 Bytes

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.