I'm working on a C# MVC (Visual Studio 2010) project and found Notify.js. I want to start using it but I don't know how. I added the downloaded content into my project and the notify.js
script now shows under the Scripts
folder, along with modernizr.js
, references.js
, jquery-1.7.1.js
, etc..
I saw this is the method syntax:
$.notify( url Image, string Title, string Description);
An example:
$.notify("star.ico","Hello","This is a test");
But that's all I got, I don't know where or how to apply it.
Can anyone help me out?
Thanks
EDIT
Here's the little bit of code I added to my cshtml
file:
<script type="text/javascript" src="../../Scripts/notify.js"></script>
But now I don't know how to use it.