Using JQuery notification bar Plugin on button click

superbruce150

New Member
I am very new to JQuery. I want to implement Stack Overflow style notification on top of my page. So for that matter, I downloaded a JQuery plugin from NOTY. I have read the tutorial but it doesn't explain how to implement this properly. All I want is to display the top notification on a button click. I have imported all the .js files as mentioned in the tutorial but can't figure out how to show the bar whenever i click a button. Not just the NOTY plug in mentioned earlier, i don't know how to use .js files on button click for any plugin available on the net. Can somebody please help?\[code\]<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server"> <script src="http://stackoverflow.com/questions/Scripts/jquery-1.9.0.js" type="text/javascript"></script> <script src="http://stackoverflow.com/questions/Scripts/jquery.noty.js" type="text/javascript"></script> <script src="http://stackoverflow.com/questions/Scripts/top.js" type="text/javascript"></script></asp:Content>\[/code\]Now what to write in the button click event? \[code\] protected void Button1_Click(object sender, EventArgs e) { }\[/code\]
 
Back
Top