🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

timed-message.js is a lightweight and easy-to-use jQuery plugin used for displaying toast-style non-blocking notifictions to alert the user of something.

Notification toast-message

Documentation

timed-message-js

A lite JavaScript library for displaying non-blocking alert messages. The focus is on simple setup and easy to override CSS.

Demo

Setup

Requires JQuery

HTML file

<head> 	... 	<link rel="stylesheet" href="timed-message.css"> 	<script type="text/javascript" src="timed-message.js"></script> 	... </head>

Use

JavaScript file

TimedMessage.createMessage("This is a <b>timed</b><br/> message demo");

createMessage Details

Parameter Type Default Description
message html N/A HTML alert message should contain
duration int 4 sec Optional. How long to show the message in milliseconds.
additionalSettings object null Optional. Additional settings with structure below. All properties are optional.
additionalSettings.scope DOM reference window Root of JQuery selector.
additionalSettings.fadeOutDuration int 1 sec Time in milliseconds for the message to fade out. Change if transition duration change.
additionalSettings.cssClass string null The name of the css class to add to the timed message. This will also remove default css.
additionalSettings.onDone function null Function called once the message has completely faded out.

License

Apache License 2.0


You May Also Like