jQuery(document).ready(function(e) { //fontSize increase & decrease start if (_getCookie("fontSize") != null) { var fontSize = _getCookie("fontSize"); jQuery("#main-content").css("font-size", fontSize + "px"); } else { var fs = jQuery("body").css('font-size'); var fontSize = fs; jQuery("#main-content").css("font-size", fs); } function _set_font_size(fontType) { if (fontType == 'increase') { if (parseInt(fontSize) < 18) { fontSize = parseInt(fontSize) + 2; } } else if (fontType == "decrease") { if (parseInt(fontSize) > 10) { fontSize = parseInt(fontSize) - 2; } } else { fontSize = 15; } _setCookie("fontSize", fontSize); jQuery("#main-content").css("font-size", fontSize + "px"); } // cookies function _getCookie(name) { var arg = name + "="; var alen = arg.length; var clen = document.cookie.length; var i = 0; while (i < clen) { var j = i + alen; if (document.cookie.substring(i, j) == arg) { return _getCookieVal(j); } i = document.cookie.indexOf(" ", i) + 1; if (i == 0) break; } return null; } function _deleteCookie(name, path, domain) { if (_getCookie(name)) { document.cookie = name + "=" + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + "; expires=Thu, 01-Jan-70 00:00:01 GMT"; } } function _setCookie(name, value, expires, path, domain, secure) { var vurl = true; if (path != '' && path != undefined) { vurl = validUrl(path); } if (jQuery.type(name) == "string" && vurl) { document.cookie = name + "=" + escape(value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : ""); } } function _getCookieVal(offset) { var endstr = document.cookie.indexOf(";", offset); if (endstr == -1) { endstr = document.cookie.length; } return unescape(document.cookie.substring(offset, endstr)); } jQuery('li.text-sizing a:nth-child(1)').click(function(e) { e.stopPropagation(); e.preventDefault(); _set_font_size('increase'); }); jQuery('li.text-sizing a:nth-child(2)').click(function(e) { e.stopPropagation(); e.preventDefault(); _set_font_size(); }); jQuery('li.text-sizing a:nth-child(3)').click(function(e) { e.stopPropagation(); e.preventDefault(); _set_font_size('decrease'); }); //fontSize increase & decrease end //skiptomain content start jQuery('.skip-content > a').bind('click',function(event){ var $anchor = jQuery(this); jQuery('html, body').stop().animate({ scrollTop: jQuery($anchor.attr('href')).offset().top - 102 }, 800); event.preventDefault(); }); //collection bank content start jQuery('.goto-bank-details').bind('click',function(event){ var $anchor = jQuery(this); jQuery('html, body').stop().animate({ scrollTop: jQuery($anchor.attr('href')).offset().top - 88 }, 800); event.preventDefault(); }); jQuery(".skip-content > a").click(function(e) { e.preventDefault(); jQuery('#main-content').attr('tabindex','-1'); jQuery('#main-content').focus(); }); //skiptomain content end // Go to Top jQuery("a[href='#top']").click(function() { jQuery("html, body").animate({ scrollTop: 0 }, 1000); return false; }); // Canvas Menu jQuery('.menuToggle').on('click',function(e) { jQuery('.canvas-menu').addClass('active'); jQuery('.main-body-content').addClass('active'); return false; }); jQuery('.m-close').on('click',function(e) { jQuery('.canvas-menu').removeClass('active'); jQuery('.main-body-content').removeClass('active'); return false; }); jQuery('body').click(function(e) { jQuery('.accessibility-menu li').removeClass("mFocus") }); //keyboard accessing functions start function addFocusClass() { jQuery('.accessibility-menu li').each(function(index, element) { jQuery(this).find('>a').focus(function(e) { jQuery(this).parent('li').addClass('mFocus').siblings().removeClass('mFocus'); }); }); jQuery(".accessibility-menu li.site-lang ul.dropdown-lang li:last-child a").focusout(function(e) { jQuery(this).parents('.site-lang').removeClass("mFocus") }); jQuery('.main-menu ul li').each(function(index, element) { jQuery(this).find('>a').focus(function(e) { jQuery(this).parent('li').addClass('mFocus').siblings().removeClass('mFocus'); }); }); jQuery(".india-logo").focusin(function(e) { jQuery(this).addClass("mFocus") }); jQuery(".india-logo").focusout(function(e) { jQuery(this).removeClass("mFocus") }); document.addEventListener('keydown', function(e) { if (e.keyCode === 9) { jQuery('body').addClass('show-focus-outlines'); } }); document.addEventListener('mousedown', function(e) { jQuery('body').removeClass('show-focus-outlines'); }); } addFocusClass(); //keyboard accessing functions end jQuery('.post-slider').owlCarousel({ loop:true, margin:20, nav:false, dots:true, responsive:{ 0:{ items:1 }, 576:{ items:2 }, 992:{ items:3 }, 1200:{ items:4 } } }); //home banner slider start var owl = jQuery('.mob-slider'); owl.owlCarousel({ items:1, loop:true, margin:0, nav:false, dots:true, autoplay:true, autoplayTimeout:5000, autoplayHoverPause:true }); //home banner slider end jQuery('#myDropdown').ddslick({ onSelected: function(selectedData){ //callback function: do something with selectedData; } }); jQuery('#myDropdown').ddslick(); // Sticky Header var headerH = jQuery('.header-sticky').outerHeight(); jQuery(".header-sticky").sticky({ topSpacing:0, zIndex:25 }); jQuery('.header-sticky').on('sticky-end', function() { jQuery('.sticky-wrapper').height(headerH); }); if ( jQuery(window).width() <= 767 ) { jQuery(".header-sticky").unstick(); jQuery('.skip-content > a').bind('click',function(event){ event.preventDefault(); var $anchor = jQuery(this); jQuery('html, body').stop().animate({ scrollTop: jQuery($anchor.attr('href')).offset().top }, 800); }); } jQuery(".modal-header .close").on('keydown', function(e) { var keyCode = e.keyCode || e.which; if (keyCode == 9) { e.preventDefault(); // call custom function here jQuery('#bank-avl-data').modal('hide') } }); jQuery( function() { jQuery( "#datepicker" ).datepicker(); } ); }); jQuery(window).scroll(function() { // Scroll to show arrow if (jQuery(this).scrollTop()>0){ jQuery('a.top').fadeIn(); }else{ jQuery('a.top').fadeOut(); } });