Create and use shared mailbox Create http://aclouda.com/blog/ms/how-to-create-a-shared-mailbox-in-microsoft-exchange-server-2016/ Open and use 1. https://support.office.com/en-us/article/open-and-use-a-shared-mailbox-in-outlook-2016-and-outlook-2013-d94a8e9e-21f1-4240-808b-de9c9c088afd 2. https://support.office.com/en-us/article/Open-and-use-a-shared-mailbox-in-Outlook-Web-App-bc127866-42be-4de7-92ae-1ef2f787fd5c Outlook Settings in Dataclub’s Hosting mode 1. Install the certificate of “dataclub CA” 2. Add the following lines to hosts file: a. 61.129.57.227 autodiscover.gtcom-us.com b. 61.129.57.227
jQuery Notes
Tutorial https://www.youtube.com/watch?v=hMxGhHNOkCU&list=PLoYCgNOIyGABdI2V8I_SWo22tFpgh2s6_ $(document).ready(function() = $(function() { }); Highlight Selected Item <div id=”menu”> <ul class=’menu’> <li><a href=”#”>Panel 1</a> <li/><li><a href=”#”>Home</a></li> <li><a href=”#”>JavaScript</a></li> <li><a href=”#”>Blog</a></li> </ul></div> <!– Script –> <script> $(document).ready(function() { //$(‘#btn1’).html(‘my button’); $(‘#menu li’).click(function() { $(‘#menu li’).filter(‘.active’).removeClass(‘active’); $(this).addClass(‘active’); });