/* Copyright 2016 Haig Didizian This file is part of App Service Info for Azure. App Service Info for Azure is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. App Service Info for Azure is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with App Service Info for Azure. If not, see . */ jQuery(function($) { $( document ).ready(function() { $('#appsvc-more-info-icon').on('mouseover', function(ev) { $('#appsvc-more-info-box').show(); }); $('#appsvc-more-info-icon').on('mouseout', function(ev) { $('#appsvc-more-info-box').hide(); }); }); });