Easy jQquery Plugins

TechnoPlugin

Include the jquery file reference and Notificationjq.js reference before calling notify().

<script src="//code.jquery.com/jquery-1.7.1.js"></script>
<script src="~/Scripts/Notificationjq.js"></script>
<div id="divProgress"></div>
<script>
$.notify({
text: " Hello from technoplugin.com!!"
});
</script>

The only mandatory parameter for notify function is text. All rest of the parameters are for customization and optional.

All the customization parameters are optional which you could provide if you need to customize notify as per your need.

<script src="//code.jquery.com/jquery-1.7.1.js"></script>
<script src="~/Scripts/Notificationjq.js"></script>
<div id="divProgress"></div>
<script>
$.notify({
text: "Hello from technoplugin.com!!",//Text to be displayed in notification
thumbSrc: "Images/guest.png",//Image source for thumbnail image
background: "#cecece",//Background colour of notification
fontColor: "black",//Font colour of text
fontSize: "16px",//Font size of text
autoClose: false//Set false to keep notification on the screen unless closed manually
});
</script>
Close
loading
  Contact Submit plugin