Ggrowl

For better browsing !

API

Ggrowl is really flexible and allows you to do whatever you need.

show Function

$.Ggrowl.show(Text,Options);
  • Text : string - The message that will display in the body of the notification.
  • Options : object - A configuration object containing each of the options for the notificaton.

Options Configuration Object

$.Ggrowl = {text, 
            {
                "position"        :   "bottom-right"  // string
                "message"         :   null            // string
                "icon"            :   null            // string
                "iconColor"       :   null            // string
                "imageUrl"        :   null            // string
                "imgHeight"       :   50              // int
                "imgWhite"        :   50              // int
                "speed"           :   500             // int
                "timeout"         :   5000            // int
                "animete_timeout" :   true            // bool
                "mobileEvent"     :   true            // bool
                "type"            :   false           // string
                "theme"           :   "themeDefault"  // string
                // buttons
                "btnOK"           :   false           // bool
                "btnYes"          :   false           // bool
                "btnNo"           :   false           // bool
                "btnHelp"         :   false           // bool
                "btnCancel"       :   false           // bool
                // Event animation
                "clickAnimate"    :   null            // string
                "showAnimate"     :   "bounce"        //string
                "closeAnimate"    :   "fadeOutDown"   //string
                // Event function
                "click"           :   null            // function
                "hover"           :   null            // function
                "dblclick"        :   null            // function
                "mousedown"       :   null            // function
                "mouseleave"      :   null            // function 
                "mouseout"        :   null            // function
                "mouseover"       :   null            // function
                "mouseup"         :   null            // function
            }
}