File: example.html

Recommend this page to a friend!
  Classes of John Diaz   jQuery System Tray Popup   example.html   Download  
File: example.html
Role: Example script
Content type: text/plain
Description: Example file
Class: jQuery System Tray Popup
Plugin to display system tray like messages
Author: By
Last change: This plugin needs jquery cookie to work.
Date: 9 years ago
Size: 827 bytes
 

Contents

Class file image Download
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta charset="utf-8"> <title>Tray Popup v.1.0.6</title> <script type="text/javascript" src="//code.jquery.com/jquery-1.10.2.js"></script> <script type="text/javascript" src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <script type="text/javascript" src="jquery.cookie.js"></script> <script type="text/javascript" src="fnTrayPopup.1.0.6.js"></script> </head> <body> <button id="simple-popup-test">Click Me!.</button> <script type="text/javascript" > jQuery(function ($) { $("#simple-popup-test").click(function () { $.fnTrayPopup("Example Message Success", {popupType: 'success'}); }); }); </script> </body> </html>