Aflac Incorporated - Stock - Stock Quote & Chart (2024)

Disclaimer

Coverage underwritten by American Family Life Assurance Company of Columbus. Group coverage underwritten by Continental American Insurance Company, which is not licensed to solicit business in Guam, Puerto Rico, or the Virgin Islands. For groups sitused in California, group coverage is underwritten by Continental American Life Insurance Company. For individual coverage in New York or coverage for groups sitused in New York, coverage is underwritten by American Family Life Assurance Company of New York.

© 2019 Aflac Incorporated


' + '

' + '

' /* beautify preserve:end */ ), location: '.pane--right', submitText: 'Sign Up' //this will change the text of the submit button on the on the mailing List }, }, scollingTable: function(selector) { $(selector).not(selector + ' table').wrap(''); }, scrollHeader: function() { var $window = $(window), $layout = $('.layout'); $(window).on('scroll', function() { var $scroll = $(window).scrollTop(); if ($window.scrollTop() > 0) { $layout.addClass('js--header-small') } else { $layout.removeClass('js--header-small'); } }) }, removeActiveSearch: function() { $('.layout').on('click', function(e) { if (!$(e.target).closest('.module-search--desktop').length) { $('.module-search--desktop').removeClass('js--search-active'); $('.module-search--desktop .module-search_trigger ').removeClass("js--active"); $('.module-search--desktop .module_container--inner').removeClass("js--revealed"); } }); }, hoverNavigation: function() { $('.nav--main li').on("mouseover", function() { $('.layout').addClass('js--hover'); }); $('.nav--main li').on("mouseleave", function() { $('.layout').removeClass('js--hover'); }); }, mobileNavigationTitles: function() { $('.nav--mobile .level2 li.has-children').each(function() { var text = $(this).find('> a').text(); $(this).find('.level3').prepend('' + text + ''); }); $('.nav_back').on('click touch touchstart', function() { $('.nav--mobile').removeClass('js--second-level-active'); $(this).closest('.js--expanded').removeClass('js--expanded'); }); $('.nav_close').on('touch touchstart', function() { $('.layout').removeClass('js--mobile'); }); }, _onMobileMenuExpand: function($nav) { $nav.on('click touch touchstart', 'li.has-children:not(.home) > a, li.has-children.no-link:not(.home) > span', function(e) { var $this = $(this), $parent = $this.parent(); if (!$parent.hasClass('js--expanded')) { e.preventDefault(); $parent.siblings().removeClass('js--expanded'); $parent.addClass('js--expanded'); $nav.addClass('js--second-level-active'); } }); }, sectionsCustom: function() { var hash = decodeURIComponent(window.location.hash.length ? window.location.hash.substring(1) : ''); if ($('.module-' + hash).length) { setTimeout(function() { q4App.scrollTo($('.module-' + hash)); window.location.hash = hash; }, 1000); } $('.nav-scroll').on('click', 'a[href*="#"]', function(e) { var $parent = $(this).closest('ul').parent('li'), hash = $(this).attr('href').split('#')[1]; e.preventDefault(); window.location.hash = hash; q4App.scrollTo($('.module-' + hash)); }); }, contrast: { getCookie: function() { return document.cookie.replace(/(?:(?:^|.*;\s*)contrast\s*\=\s*([^;]*).*$)|^.*$/, "$1"); }, setCookie: function(boolean) { document.cookie = 'contrast=' + boolean + '; path=/'; }, init: function() { $(q4Defaults.options.contrast.buttonOff).addClass(q4Defaults.options.contrast.toggleClass); var inst = this; if (!inst.getCookie().length) { inst.setCookie('false'); } else if (inst.getCookie() == 'true') { $(q4Defaults.options.contrast.buttonON).addClass(q4Defaults.options.contrast.toggleClass); $('body').addClass(q4Defaults.options.contrast.bodyClass); $(q4Defaults.options.contrast.buttonOff).removeClass(q4Defaults.options.contrast.toggleClass); } $(q4Defaults.options.contrast.buttonON).on('click keypress', function(e) { if ($(this).is('a, button')) e.preventDefault(); if (e.keyCode == 13 || e.type == 'click') { if (inst.getCookie() == 'false') { inst.setCookie('true'); } $(q4Defaults.options.contrast.buttonOff).removeClass(q4Defaults.options.contrast.toggleClass); $(this).addClass(q4Defaults.options.contrast.toggleClass); $('body').addClass(q4Defaults.options.contrast.bodyClass); } }); $(q4Defaults.options.contrast.buttonOff).on('click keypress', function(e) { if ($(this).is('a, button')) e.preventDefault(); if (e.keyCode == 13 || e.type == 'click') { if (inst.getCookie() == 'true') { inst.setCookie('false'); } $(q4Defaults.options.contrast.buttonON).removeClass(q4Defaults.options.contrast.toggleClass); $(this).addClass(q4Defaults.options.contrast.toggleClass); $('body').removeClass(q4Defaults.options.contrast.bodyClass); } }); } }, scrollToTop: function() { var $window = $(window), $layout = $('.layout'); $navContainer = $('.pane--content'), navContainerPos = function() { return $navContainer.position().top; }; $(window).on('scroll', function() { var $scroll = $(window).scrollTop(); if ($(window).scrollTop() >= navContainerPos()) { $('.layout').addClass('js--show-button'); } else { $('.layout').removeClass('js--show-button'); } }) $('.module-back-top_button').on('click', function() { q4App.scrollTo($('.layout')); }); }, fancySignup: function () { var inst = this, validationLock = true, signup = inst.options.mailingListSignupCls, $signup = $(signup), confirm = 'div[id*="SubscriberConfirmation"]', $confirm = $('div[id*="SubscriberConfirmation"]'), // jshint ignore:line footerSuccess = inst.options.mailingListConfig.location + ' ' + confirm + ' .module_message--success', $footerSuccess = $(footerSuccess); // Subscriber Confirmation fix if ($confirm.is(':visible')) { if ($confirm.filter(':visible').closest(inst.options.mailingListConfig.location).length) { var successText = $confirm.filter(':visible').closest(inst.options.mailingListConfig.location).find('.module_message--success').text(); $confirm.filter(':visible').parent().html(inst.options.mailingListConfig.tpl).find('.module_message--success').html(successText); } inst.scrollTo($('div[id*="SubscriberConfirmation"]').filter(':visible'), 0); if (!$footerSuccess.length) { $('.module-unsubscribe,' + inst.options.mailingListConfig.hideOnConfirmation).addClass('js--hidden'); } } if (!$signup.length) { return; } $signup.each(function () { var $this = $(this); // If a confirmation or error message is visible on page load, scroll to the module if ($this.find('input.module_input').length && $this.find('input.module_input').val().length) { inst.scrollTo($this, 0); } // Create a second submit button to be displayed inside fancybox. Replace input type submit with button var $submit = $this.find('input[type="submit"]'); $submit.addClass('js--hidden'); $submit[0].outerHTML = $submit[0].outerHTML.replace(/^' + $submit[0].value + '
'; $this.find('.module_actions').append(''); $this.on('click', '.module-subscribe_submit-button--fancy', function (e) { e.preventDefault(); validationLock = false; var $parent = $(this).closest(signup), errors = inst._mailingListValidation($parent); if (!errors.length) { $(this).closest(signup).find('.module_actions [type="submit"]').not(this).trigger('click'); return false; } else { inst.scrollTo($this.find('.module_error-container'), 0); } return false; }); // Run validation on change $this.find('input, select').on('change', function () { if (!validationLock) { inst._mailingListValidation($this); } }); // Validate submit on enter $this.find('input[type="text"], input[type="email"]').on('keydown', function (e) { if (e.keyCode == 13) { e.preventDefault(); $(this).closest(signup).find('.module_actions [type="submit"]').trigger('click'); return false; } }); }); }, init: function() { var app = this; app.cleanUp(); app.submitOnEnter('.module-unsubscribe'); app.submitOnEnter('.module-search'); app.validateSubmit('.module-search'); app.superfish($('.nav--main .level2'), { cssArrows: false }); app.mobileMenuToggle($('.layout'), '.pane--navigation', '.module-toggle_button'); app.cleanQuickLinks($('.module-links')); app.copyright($('.copyright_year')); app.reveal('.module-search--desktop', '.module-search_trigger', '.module_container--inner', false, 'js--search-active', 'js--active', 'js--revealed'); app.reveal('.module-footnotes', '.module-footnotes_disclaimer-trigger-button', '.module-footnotes_disclaimer-text', false); app.docTracking(); app.fancySignup(); app.resetDate(['.nav a[href*="s3.q4web.com"]:not([href$=".pdf"])', '.nav a[href*="s4.q4web.com"]:not([href$=".pdf"])']); app.previewToolbar(); app.sectionsCustom(); app.scrollHeader(); app.contrast.init(); app.removeActiveSearch(); app.mobileNavigationTitles(); app.hoverNavigation(); app.scrollToTop(); }});q4App.init();

Aflac Incorporated - Stock - Stock Quote & Chart (2024)
Top Articles
Soundboks 4 im Test: So gut klingt die Power-Partybox
Hochwertiger Bluetooth-Lautsprecher zum fairen Preis
Will Byers X Male Reader
Research Tome Neltharus
Can ETH reach 10k in 2024?
Plaza Nails Clifton
Craigslist Mexico Cancun
Nwi Police Blotter
Needle Nose Peterbilt For Sale Craigslist
Student Rating Of Teaching Umn
Power Outage Map Albany Ny
Pro Groom Prices – The Pet Centre
Dumb Money
Nioh 2: Divine Gear [Hands-on Experience]
Rainfall Map Oklahoma
Dexter Gomovies
Mineral Wells Independent School District
Gemita Alvarez Desnuda
Hanger Clinic/Billpay
How to Create Your Very Own Crossword Puzzle
How To Level Up Roc Rlcraft
Healthier Homes | Coronavirus Protocol | Stanley Steemer - Stanley Steemer | The Steem Team
Understanding Genetics
Iroquois Amphitheater Louisville Ky Seating Chart
Engineering Beauties Chapter 1
Accuweather Minneapolis Radar
Kentuky Fried Chicken Near Me
Turbo Tenant Renter Login
Snohomish Hairmasters
Labcorp.leavepro.com
Receptionist Position Near Me
Bolly2Tolly Maari 2
Wolfwalkers 123Movies
Bfsfcu Truecar
How often should you visit your Barber?
Redbox Walmart Near Me
Warren County Skyward
Current Time In Maryland
Joplin Pets Craigslist
How are you feeling? Vocabulary & expressions to answer this common question!
Michael Jordan: A timeline of the NBA legend
Stewartville Star Obituaries
1Exquisitetaste
ESA Science & Technology - The remarkable Red Rectangle: A stairway to heaven? [heic0408]
Parent Portal Pat Med
Valls family wants to build a hotel near Versailles Restaurant
Lady Nagant Funko Pop
Aznchikz
BYU Football: Instant Observations From Blowout Win At Wyoming
Law Students
Comenity/Banter
Latest Posts
Article information

Author: Tyson Zemlak

Last Updated:

Views: 5831

Rating: 4.2 / 5 (63 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Tyson Zemlak

Birthday: 1992-03-17

Address: Apt. 662 96191 Quigley Dam, Kubview, MA 42013

Phone: +441678032891

Job: Community-Services Orchestrator

Hobby: Coffee roasting, Calligraphy, Metalworking, Fashion, Vehicle restoration, Shopping, Photography

Introduction: My name is Tyson Zemlak, I am a excited, light, sparkling, super, open, fair, magnificent person who loves writing and wants to share my knowledge and understanding with you.