DIGITAL TOOLS SUPPORT
Welcome to Digital Tools Support. Whether you are student, faculty or an aspirant applicant, we are here to provide you assistance in using our digital tools. If you have an issue with your college assigned hardware, software or any application, please contact us.
Operating Hours: 0900 hrs to 2200 hours except for Fridays and public holidays.
Call: +9607332150
Email: info@micollege.edu.mv
How to Use
GET HELP WITH
USEFUL INFORMATION AND UPDATES
Calendar for Training
and Activities
Calendar
Need Any Help?
//according to loftblog tut $('.nav li:first').addClass('active');
var showSection = function showSection(section, isAnimate) { var direction = section.replace(/#/, ''), reqSection = $('.section').filter('[data-section="' + direction + '"]'), reqSectionPos = reqSection.offset().top - 0;
if (isAnimate) { $('body, html').animate({ scrollTop: reqSectionPos }, 800); } else { $('body, html').scrollTop(reqSectionPos); }
};
var checkSection = function checkSection() { $('.section').each(function () { var $this = $(this), topEdge = $this.offset().top - 80, bottomEdge = topEdge + $this.height(), wScroll = $(window).scrollTop(); if (topEdge < wScroll && bottomEdge > wScroll) { var currentId = $this.data('section'), reqLink = $('a').filter('[href*=\\#' + currentId + ']'); reqLink.closest('li').addClass('active'). siblings().removeClass('active'); } }); };
$('.main-menu, .responsive-menu, .scroll-to-section').on('click', 'a', function (e) { e.preventDefault(); showSection($(this).attr('href'), true); });
$(window).scroll(function () { checkSection(); });