td-message is a tiny, Android-inspired notification plugin to create toast-like notice/alert/announcement popups with custom icons, positions, durations, and styles.
<link rel="stylesheet" href="/path/to/td-msessage.css" />
<script src="/path/to/cdn/jquery.min.js"></script>
<script src="/path/to/td-message.js"></script>
$.message({
text: "Info Message"
});
$.message({
type: "success",
text: "Success Message",
duration: 5000
});
$.message({
type: "error",
text: "Error Message",
positon: "bottom-right"
});
$.message({
type: "warning",
text: "Warning Message",
showClose: false
});
Author: shitudouya
GitHub: https://github.com/shitudouya/td-message
#jquery #javascript