News Alert

News Alert intended to flag users when they log into the site.

by Doug Hill

HTML

<div id="alert_news" title="CE Dashboard News Alert !!">
    <p><span class="ui-icon ui-icon-alert" style="float: left; margin: 0 7px 20px 0;"></span>Please review and acknowledge the most current CE Dashboard News.</p>
    <p></p>
</div>

JavaScript

$(document).ready(function () {
     $(function () {
         $("#alert_news").dialog({
             resizable: false,
             height: 500,
             width: 700,
             modal: true,
             closeOnEscape: false,
             buttons: {
                 "I Acknowledge": function () {
                     $(this).dialog("close");
                 },
                 Cancel: function () {
                     $(this).dialog("close");
                 }
             }
         });
     });
 });