<!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>
|