Investor Relations - Apple (2023)

').appendTo('.pane--navigation .module-search .module_container--inner'); // Ir nav $('').insertBefore('.nav--main .home > .level2'); $('.nav--main').on('click', '.nav-ir_dropdown', function() { $('.nav--main').toggleClass('js--show'); $(this).attr('aria-expanded', function (i, attr) { return attr == 'true' ? 'false' : 'true'; }); }); /*Select wrap*/ $('select').not('.dropdown-wrap > select').wrap('

(Video) Apple $AAPL Q1 2023 Earnings Call

'); $('.module').on('click', '.dropdown-wrap', function() { $(this).find('select').focus(); }); }, tabs: function($container, triggerContainer, trigger, content, select, useHash, useKBTabs) { // display specific tab using hash from url var hash = window.location.hash.split('#')[1], hashTargetExists = $(content + '.' + hash).length > 0, changeHash = useHash != undefined ? useHash : true, first, $hiddenContent = function() { return $(content).addClass('js--hidden').attr('aria-hidden', 'true'); }; // accessibility $(triggerContainer).attr('role', 'tablist'); $(trigger).attr('role', 'tab').attr('aria-selected', 'false'); $(content).attr('role', 'tabpanel'); if (hash && hashTargetExists) { $hiddenContent().filter('.' + hash).removeClass('js--hidden').attr('aria-hidden', 'false'); if (trigger) $(trigger).attr('tabindex', '0').filter('[data-tab=".' + hash + '"]').addClass('js--selected').attr('aria-selected', 'true'); if (select) $(select + ' option[value=".' + hash + '"]').attr('selected', true); } else { $hiddenContent(); } // if trigger is used/defined if (trigger) { first = $(trigger).first().data('tab'); if (!hash || !hashTargetExists) { $(trigger).attr('tabindex', '0').first().addClass('js--selected').attr('aria-selected', 'true'); $(first).removeClass('js--hidden').attr('aria-hidden', 'false'); // change hash on load if (changeHash) window.location.hash = first.split('.')[1]; } $container.on('click keypress', trigger, function(e) { if (changeHash) window.location.hash = $(this).data('tab').split('.')[1]; if ($(trigger).is('a, button')) e.preventDefault(); $(this).addClass('js--selected').attr('aria-selected', 'true').closest($container).find('.js--selected').not(this).removeClass('js--selected').attr('aria-selected', 'false'); $hiddenContent().filter($(this).data('tab')).removeClass('js--hidden').attr('aria-hidden', 'false'); // update select if (select) { $(select).val($(this).data('tab')); } }); } // if select is used/defined if (select) { first = $(select + ' option:first-child').val(); if (!hash || !hashTargetExists) { $(select + ' option:first-child').attr('selected', true); $(first).removeClass('js--hidden').attr('aria-hidden', 'false'); // change hash on load if (changeHash) window.location.hash = first.split('.')[1]; } $container.on('change', select, function() { var tab = $(this).val(); if (changeHash) window.location.hash = $(this).val().split('.')[1]; $hiddenContent().filter(tab).removeClass('js--hidden').attr('aria-hidden', 'false'); if (trigger) $(trigger).removeClass('js--selected').filter('[data-tab="' + tab + '"]').addClass('js--selected'); }); } if (useKBTabs || useKBTabs === undefined) { var tabs = document.querySelectorAll('[role="tab"]'); var tabList = document.querySelector('[role="tablist"]'); // Add a click event handler to each tab tabs.forEach(function(tab) { var tabContentID = tab.getAttribute("data-tab").replace(".", ""), tabContentIDs = ""; $("." + tabContentID).each(function(i) { $(this).attr("id", tabContentID + "-" + i); tabContentIDs += (tabContentID + "-" + i + " "); $(this).attr("aria-labelledby", tabContentID); }); tab.setAttribute("aria-controls", tabContentIDs); tab.setAttribute("tabindex", -1); tab.addEventListener("click", changeTabs); }); $('[role="tab"][aria-selected="true"]').attr("tabindex", 0); // Enable arrow navigation between tabs in the tab list var tabFocus = 0; tabList.addEventListener("keydown", function(e) { // Move right if (e.keyCode === 39 || e.keyCode === 37) { tabs[tabFocus].setAttribute("tabindex", -1); if (e.keyCode === 39) { tabFocus++; // If we're at the end, go to the start if (tabFocus >= tabs.length) { tabFocus = 0; } // Move left } else if (e.keyCode === 37) { tabFocus--; // If we're at the start, move to the end if (tabFocus < 0) { tabFocus = tabs.length - 1; } } tabs[tabFocus].setAttribute("tabindex", 0); tabs[tabFocus].focus(); } }); } function changeTabs(e) { var target = e.target; var parent = target.closest('[role="tablist"]'); var grandparent = parent.parentNode; // Remove all current selected tabs parent .querySelectorAll('[aria-selected="true"]') .forEach(function(t) { t.setAttribute("aria-selected", false); }); // Set this tab as selected target.setAttribute("aria-selected", true); // Hide all tab panels // grandparent // .querySelectorAll('[role="tabpanel"]') // .forEach(function(p) { p.setAttribute("hidden", true); }); // Show the selected panels var tabContentIDArr = target.getAttribute("aria-controls").split(" "); $.each(tabContentIDArr, function(index, value) { if (value && value != "") $('#' + value).removeAttr("hidden"); }); } }, // Captcha update 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) { $this.find('.module_error-container').empty(); 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); $this.find('.module_error-container').focus(); } 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; } }); }); }, _mailingListValidation: function ($el) { var inst = this, errors = []; $el.find('.js--invalid').removeClass('js--invalid'); $el.find('.module_required').each(function () { var $item = $(this).closest('.module-subscribe_table-input'), message = inst.options.requiredText, field = $item.find('label:first').text(), validation = true; // Does the input exist? if ($item.find('input').length) { if ($item.hasClass('module-subscribe_email')) { // Does the email address contain text? if (!$item.find('input').val().length) { $item.find('input').attr('aria-invalid','true'); validation = false; } // Is the email address valid? else if (!inst.isValidEmailAddress($item.find('input').val())) { validation = false; $item.find('input').attr('aria-invalid','true'); message = inst.options.invalidText; } } // Does the input contain text? else if (!$item.find('input').val().length) { validation = false; $item.find('input').attr('aria-invalid','true'); } } else if ($item.find('select').length) { if (!$item.find('select option:selected').index()) { validation = false; $item.find('select').attr('aria-invalid','true'); } } else { if (!$item.closest('table').find('input[type="checkbox"]:checked').length) { $item = $item.next(); validation = false; } } if (!validation) { $item.addClass('js--invalid'); errors.push({ name: field, message: message }); } else { $item.find('[aria-invalid]').removeAttr('aria-invalid'); } }); if (errors.length) { $el.find('.module_error-container').html(Mustache.render(inst.options.errorTpl, { errors: errors, errorMessage: inst.options.errorMessage })).show(); } else { $el.find('.module_error-container').html(''); } return errors; }, validateUnsubscribe: function ($el) { var inst = this, $submit = $el.find('input[type="submit"]'); $submit[0].outerHTML = $submit[0].outerHTML.replace(/^' + $submit[0].value + ''; $el.find('[type="submit"]').on('click', function (e) { var emailAddress = $el.find('input[id*="Email"]').val(); if (!inst.isValidEmailAddress(emailAddress)) { $el.find('.module_confirmation-container').html(Mustache.render(inst.options.errorTpl, { errors: [{ message: emailAddress.length ? inst.options.invalidText : inst.options.requiredText, name: $el.find('label.module-unsubscribe_email').text() }], errorMessage: inst.options.errorMessage })).show(); inst.scrollTo($el.find('.module_error-container'), 0); $el.find('.module_error-container').focus(); $el.addClass('js--invalid').find('[type="email"]').attr('aria-invalid','true'); e.preventDefault(); } else { $el.find('.module_error-container').html(''); $el.removeClass('js--invalid').find('[aria-invalid]').removeAttr('aria-invalid'); } }); if ($el.find('.module_confirmation-container').text().trim().length) { $('.module-subscribe,' + inst.options.mailingListConfig.hideOnConfirmation).not(inst.options.mailingListConfig.location + ' .module-subscribe').addClass('js--hidden'); $el.find('.module_introduction, .module-unsubscribe_table, .module_actions').addClass('js--hidden'); inst.scrollTo($el); } }, navAccessibility: function() { $('nav .selected > a').attr('aria-current', 'page'); $('.nav--corp').attr('aria-label', 'Global'); $('.nav--main').attr('aria-label', 'secondary navigation'); $('nav.nav--secondary').attr('aria-label', 'Global'); }, accessibilize: function($tab, $tabpanel, idx) { $tab.each(function(index){ $(this).attr('tabindex','0').attr({ 'id': 'tab' + idx + (index+1), 'role': 'button', 'aria-expanded': 'false', 'aria-controls': 'panel' + idx + (index+1), }); }); $('#tab' + idx + "1").addClass('tab-firsttab'); $('#tab' + idx + ($tab.length)).addClass('tab-lasttab'); $tabpanel.each(function(index){ $(this).addClass('js--hidden').attr({ 'id': 'panel' + idx + (index+1), 'role': 'region', 'aria-hidden': 'true', 'aria-describedby': 'tab' + idx + (index+1) }); }); }, accessibilizeTweaked: function($tab, $tabpanel, idx) { $tab.each(function(index){ $(this).attr('tabindex','0').attr({ 'id': 'tab' + idx + (index+1), 'role': 'button', 'aria-expanded': 'false', 'aria-controls': 'panel' + idx + (index+1), }); }); $('#tab' + idx + "1").addClass('tab-firsttab'); $('#tab' + idx + ($tab.length)).addClass('tab-lasttab'); $tabpanel.each(function(index){ $(this).addClass('js--hidden').attr({ 'id': 'panel' + idx + (index+1), 'role': 'region', // 'aria-hidden': 'true', 'aria-describedby': 'tab' + idx + (index+1) }); }); }, toggle: function($container, item, toggle, panel, accordion, allButton, openFirst, includeClasses) { var $this = this, $item = $container.find(item), keyCode = { 'ENTER': 13, 'SPACE': 32, 'DOWN': 40, 'UP': 38, 'HOME': 36, 'END': 35 }; $container.each(function(idx){ $this.accessibilizeTweaked($(this).find(toggle), $(this).find(panel), (idx+1)); if (accordion) { $(this).find(toggle).attr('aria-disabled','false'); } }); $item.on('click keypress keydown', toggle, function(e) { if (e.which == keyCode.ENTER || e.type == 'click' || (e.type == 'keydown' && e.which == keyCode.SPACE)) { e.preventDefault(); if (accordion) { $this._accordionTrigger($(this), $(this).closest($container), item, toggle, panel); } else { $this._toggleTrigger($(this), $(this).closest($container), item, panel); } if (allButton) { if (!$(this).closest($container).find(item + '.js--active').length) { $(this).closest($container).find('.toggle-all').removeClass('js--active'); } if ($(this).closest($container).find(item + '.js--active').length === $(this).closest($container).find(item).length) { $(this).closest($container).find('.toggle-all').addClass('js--active'); } } } else if (e.which == keyCode.UP) { e.preventDefault(); if ($(e.target).hasClass('tab-firsttab')){ $(this).closest($item).siblings(item).children('.tab-lasttab').focus(); } else { $(this).closest($item).prev(item).children(toggle).focus(); } } else if (e.which == keyCode.DOWN) { e.preventDefault(); if ($(e.target).hasClass('tab-lasttab')){ $(this).closest($item).siblings(item).children('.tab-firsttab').focus(); } else { $(this).closest($item).next(item).children(toggle).focus(); } } else if (e.which == keyCode.HOME) { e.preventDefault(); $(this).closest($item).siblings(item).children('.tab-firsttab').focus(); } else if (e.which == keyCode.END) { e.preventDefault(); $(this).closest($item).siblings(item).children('.tab-lasttab').focus(); } }); if (allButton) { $this._toggleAll($container, item, toggle, panel); } if (openFirst) { $container.each(function () { $(this).find($item).first().find(toggle).attr('aria-expanded', 'true'); console.log($(this).find($item).first().find(toggle)); //aria-hidden conflicts with ios voiceover. // $(this).find($item).first().addClass('js--active').find(panel).removeClass('js--hidden').attr('aria-hidden','false'); $(this).find($item).first().addClass('js--active').find(panel).removeClass('js--hidden'); // $(this).find($item).not(':first').find(panel).hide().attr('aria-hidden','true'); $(this).find($item).not(':first').find(panel).hide(); if (accordion) { $(this).find($item).first().find(toggle).attr('aria-disabled', 'true'); } }); } $container .attr('data-accordion','container') .find(item).attr('data-accordion','item').end() .find(toggle).attr('data-accordion','toggle').end() .find(panel).attr('data-accordion','panel'); if (includeClasses) { $container .addClass('accordion') .find(item).addClass('accordion_item').end() .find(toggle).addClass('accordion_toggle').end() .find(panel).addClass('accordion_panel'); } }, _toggleAll: function($container, item, toggle, panel) { $container.prepend( '

(Video) WATCH LIVE: Apple $AAPL Q1 2022 Earnings Call

' ).on('click', '.toggle-all button', function(e) { e.preventDefault(); $(this).parent().toggleClass('js--active'); if ( $(this).parent().is('.js--active') ) { $(this).attr('aria-pressed', 'true'); $(this).siblings('[role="status"]').text('Button pressed. All items expanded'); $(this).closest($container).find(toggle).attr('aria-expanded', 'true'); $(this).closest($container).find(item).addClass('js--active'); $(this).closest($container).find(panel).slideDown(400, function() { $(this).removeClass('js--hidden'); // $(this).attr('aria-hidden','false'); }); } else { $(this).attr('aria-pressed', 'false'); $(this).siblings('[role="status"]').text('Button not pressed. All items collapsed'); $(this).closest($container).find(toggle).attr('aria-expanded', 'false'); $(this).closest($container).find(item).removeClass('js--active'); $(this).closest($container).find(panel).slideUp(400, function() { $(this).addClass('js--hidden'); // $(this).attr('aria-hidden','true'); }); } }); $container.on('click keypress keydown', item, function(e) { if (e.which == 13 || e.which == 1) { if ( $(this).siblings('.toggle-all').hasClass('js--active') ) { $(this).siblings('.toggle-all').children('button').attr('aria-pressed', 'true'); } else { $(this).siblings('.toggle-all').children('button').attr('aria-pressed', 'false'); } } }); }, _accordionTrigger: function($this, $container, item, toggle, panel) { if ( !$this.closest(item).hasClass('js--active') ) { $this.closest($container).find(item).removeClass('js--active'); $container.find(toggle).attr({ 'aria-expanded': 'false', 'aria-disabled': 'false' }).end().find(panel).slideUp(400, function() { // $(this).addClass('js--hidden').attr({ // 'aria-hidden': 'true' // }); }); $this.attr({ 'aria-expanded': 'true', 'aria-disabled': 'true' }).closest(item).addClass('js--active').find(panel).slideDown(400, function() { // $(this).removeClass('js--hidden').attr({ // 'aria-hidden': 'false' // }); }); } }, _toggleTrigger: function($this, $container, item, panel) { var $allToggle = $this.closest($container).find('.toggle-all'); $this.attr('aria-expanded', function(i, attr) { return attr == 'true' ? 'false' : 'true'; }).closest(item).toggleClass('js--active').find(panel).slideToggle(400, function() { $(this).toggleClass('js--hidden').attr('aria-hidden', function(i, attr) { // return attr == 'true' ? 'false' : 'true'; }); }); if ( $this.closest($container).find(item).not('.js--active').length ) { $allToggle.removeClass('js--active'); } else { $allToggle.addClass('js--active'); } }, a11yAnnouncement: function(ariaLiveVal, id, insertionSelector, triggerFn) { var hiddenDiv = '

(Video) Apple stock made ordinary investors millionaires

'; $(insertionSelector).append(hiddenDiv); triggerFn($('#' + id)); }, validateSubmit: function(selector) { var $search = $(selector); // also convert input submit to buttons $search.each(function() { $submit = $(this).find('input:submit'); $submit[0].outerHTML = $submit[0].outerHTML.replace(/^' + $submit[0].value + ''; }); $search.on('click', '[type="submit"]', function(e) { if (!$(this).closest(selector).find('input:text').val().length) { e.preventDefault(); return false; } }); }, submitOnEnter: function (selector) { $(selector).find('input[type="text"], input[type="email"]').removeAttr('onkeypress').on('keydown', function (e) { if (e.keyCode == 13) { e.preventDefault(); $(this).closest(selector).find('[type="submit"]').trigger('click'); return false; } }); }, searchReveal: function (container, trigger, panel, once, includeFocus, containerClass, triggerClass, panelClass) { containerClass = containerClass ? containerClass : ''; triggerClass = triggerClass ? triggerClass : 'js--active'; panelClass = panelClass ? panelClass : 'js--revealed'; $(container).find(trigger).attr('tabindex', '0').attr('aria-expanded', 'false'); $(container).find(panel).attr('aria-hidden', 'true'); var events = "click keypress"; var checkEventCondition = function(e) { return (e.keyCode == 13 || e.type == "click"); }; if (includeFocus) { if(once) { events = "keypress focus"; checkEventCondition = function(e) { return (e.keyCode == 13 || (e.type == "focusin" && ($(this).attr('aria-expanded') !== "true"))); }; } else { events = "mousedown keypress focus"; checkEventCondition = function(e) { return (e.keyCode == 13 || e.type == "mousedown" || (e.type == "focusin" && ($(this).attr('aria-expanded') !== "true"))); }; } } if (once) { $(container).one(events, trigger, function (e) { if (checkEventCondition(e)) { if ($(container).find(trigger).is('a, button')) e.preventDefault(); $(container).toggleClass(containerClass); $(this).toggleClass(triggerClass).attr('aria-expanded', function (i, attr) { return attr == 'true' ? 'false' : 'true'; }).closest(container).find(panel).toggleClass(panelClass); $(container).find(panel).attr('aria-hidden', function (i, attr) { return attr == 'true' ? 'false' : 'true'; }); $('body').toggleClass('js--corp-search'); if ($('body').hasClass('js--corp-search')) { $('.module-corporate .corporate_links a:not(.link-apple)').attr('tabindex','-1').parent().attr('aria-hidden','true'); } else { $('.module-corporate .corporate_links a:not(.link-apple)').removeAttr('tabindex').parent().removeAttr('aria-hidden'); } } }); } else { $(container).on(events, trigger, function (e) { if (checkEventCondition(e)) { if ($(container).find(trigger).is('a, button')) e.preventDefault(); $(container).toggleClass(containerClass); $(this).toggleClass(triggerClass).attr('aria-expanded', function (i, attr) { return attr == 'true' ? 'false' : 'true'; }).closest(container).find(panel).toggleClass(panelClass); $(container).find(panel).attr('aria-hidden', function (i, attr) { return attr == 'true' ? 'false' : 'true'; }); $('body').toggleClass('js--corp-search'); if ($('body').hasClass('js--corp-search')) { $('.module-corporate .corporate_links a:not(.link-apple)').attr('tabindex','-1').parent().attr('aria-hidden','true'); } else { $('.module-corporate .corporate_links a:not(.link-apple)').removeAttr('tabindex').parent().removeAttr('aria-hidden'); } } }); } // Accessibility $('.module-search-close-button').on('click', function(e) { $('.module-search--top .module-search_toggle').trigger("click"); }); $('.module-search-close-button').on('click keypress', function(e) { if (e.keyCode == 13 || e.type == 'click') { setTimeout(function(){ $('.module-search--top .module-search_toggle').focus(); }, 600); } }); $( document ).on( 'keydown', function ( e ) { if ( e.keyCode === 27 ) { if ($('body').hasClass('js--corp-search')) { $('.module-search--top .module-search-close-button').trigger('click'); } } }); $('.module-search--top .module-search_toggle').on('click keypress', function(e) { if (e.keyCode == 13 || e.type == 'click') { setTimeout(function(){ $('.module-search--top .module-search_input').focus(); }, 600); } }); $('.module-subscribe input[type="email"], .module-unsubscribe input[type="email"]').attr('aria-required', 'true'); }, linksAccessibility: function () { $('.module-links--footer li:not(:first-child)').prepend(''); }, mobileToggleLabel: function () { $('.layout_toggle-button').on('click', function(e) { if ($('.layout').hasClass('js--mobile')) { console.log('open'); $('.layout_toggle-button').attr('aria-label','Global Nav Open Menu'); } else { $('.layout_toggle-button').attr('aria-label','Global Nav Close Menu'); } }); }, insideNavToggle: function() { $('

(Video) Apple (AAPL) Q2 2022 Earnings Call Webcast

    ').clone().prependTo('.pane--navigation .nav--secondary nav'); $('.module-bag-link a').clone().prependTo('.pane--navigation .nav--secondary nav .corporate_links').wrap('

    (Video) Warren Buffett compares investing in Apple to farming

  • '); $('.module-corporate .corporate_links_item:first-child').clone().prependTo('.pane--navigation .nav--secondary nav .corporate_links'); $('.pane--header .layout_toggle').prependTo('.pane--navigation .nav--secondary nav'); $('.pane--navigation .module-search').insertAfter('.pane--navigation .nav--secondary nav .corporate_links'); $('.pane--navigation .corporate_links,.pane--navigation .corporate_links li').attr("role","presentation"); }, 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', '.layout_toggle button'); app.cleanQuickLinks($('.module-links')); app.copyright($('.copyright_year')); app.docTracking(); app.fancySignup(); app.resetDate(['.nav a[href*="s4.q4web.com"]:not([href$=".pdf"])']); app.previewToolbar(); app.searchReveal('.pane--header', '.module-search_toggle','.module-search .module_container--inner', false); app.stickyNavBar(); app.meetingFancy($('.module-cta'), '.button--meeting'); app.sections(); app.corpSearch(); app.navAccessibility(); app.linksAccessibility(); app.mobileToggleLabel(); app.insideNavToggle(); }});q4App.init();

    (Video) Managers: From Italy to Top Global Businesses. Luca Maestri, CFO of Apple

  • (Video) Apple (AAPL) Q1 2023 Earnings Call + Q&A
    (Video) Apple (AAPL) Q4 2022 Earnings Call

    FAQs

    How do I contact Apple Inc Investor Relations? ›

    877-360-5390 (U.S. toll-free) +1-312-360-5399 (non-U.S.)

    Who is the head of investor relations at Apple? ›

    Luca Maestri is Apple's senior vice president and Chief Financial Officer reporting to CEO Tim Cook. As CFO, Luca oversees the accounting, business support, financial planning and analysis, treasury, real estate, investor relations, internal audit and tax functions at Apple.

    What will Apple earnings be in Q1 2023? ›

    Cupertino, California Apple today announced financial results for its fiscal 2023 first quarter ended December 31, 2022. The Company posted quarterly revenue of $117.2 billion, down 5 percent year over year, and quarterly earnings per diluted share of $1.88.

    What is Form 10 K Apple? ›

    Apple 10K includes information about the company's financial statements, its revenue and earnings, executive compensation and more. The main purpose of Apple 10K is to help investors understand the financial performance of Apple so that they can make informed decisions.

    Can I talk to an Apple rep online? ›

    Contact Apple Support

    Need service or support? Start your request online and we'll find you a solution.

    How do I contact Apple to pitch an idea? ›

    Product Feedback

    If you want to send us feedback, we request that you use the forms located at www.apple.com/feedback, where you can choose from the many listed areas for your feedback.

    How much do Investor Relations make? ›

    The average Investor Relations Manager salary in the United States is $144,169 as of January 26, 2023, but the range typically falls between $115,927 and $163,660.

    What is the highest position at Apple? ›

    The highest-paid job at Apple is a project engineering manager.
    • Project Engineering Manager – $167,090.
    • Expert – $155,946.
    • Home Advisor – $154,331.
    • Team Leader – $152,775.
    • Purchasing Manager – $152,739.
    • Asic Design Engineer – $152,033.
    • System Software Developer – $148,454.
    • Data Scientist – $147,478.
    Nov 11, 2022

    What is the highest position in Apple? ›

    The highest-paying job at Apple is a Director with a salary of ₹199.8 Lakhs per year.

    Is Apple stock expected to grow? ›

    Stock Price Forecast

    The 39 analysts offering 12-month price forecasts for Apple Inc have a median target of 173.00, with a high estimate of 195.00 and a low estimate of 118.00. The median estimate represents a +11.97% increase from the last price of 154.50.

    What will Apple's next dividend be? ›

    Apple's next dividend payment date is on 2023-02-16, when Apple shareholders who owned AAPL shares before 2023-02-10 will receive a dividend payment of $0.2300 per share. Add AAPL to your watchlist to be reminded of AAPL's next dividend payment.

    What is the forecast for Apple stock? ›

    The average price target for Apple is $172.41. This is based on 27 Wall Streets Analysts 12-month price targets, issued in the past 3 months. The highest analyst price target is $210.00 ,the lowest forecast is $125.00. The average price target represents 19.85% Increase from the current price of $143.86.

    What is 20f vs 10-K? ›

    20-F vs.

    Form 10-K is for U.S.-based companies, while Form 20-F is for foreign companies. Form 10-K is used for filing annual reports and transition reports, while Form 20-F can be used to file an annual report, transition report or registration statement.

    Why is a 10-K called a 10-K? ›

    10-K is short for Form 10-K, which is a document the SEC requires all public companies to file each year. The form presents a financial picture of the company, detailing its revenues, assets, and liabilities for the previous year.

    What is Item 7 in a 10-K report? ›

    Item 7 - The MD&A

    It's management's opportunity to tell investors what the financial statements show and do not show, as well as important trends and risks that have shaped the past or are reasonably likely to shape the company's future.

    How do I contact Apple without calling? ›

    1. There are several ways to contact Apple Support via phone or computer.
    2. Apple's main customer support phone number is 1-800-275-2273 in the US.
    3. You can also contact Apple Support using the Support website, the Support app, or by going to an Apple Store.
    Jul 29, 2021

    Is Apple Support Advisor real? ›

    When people contact us for help, an Apple Support Advisor responds. You'll be their human connection to Apple: friendly, thoughtful, and real. You'll answer questions about our products and services, enriching customers' lives by helping them access what they've come to love from Apple.

    Is Apple chat support free? ›

    Most Apple software and hardware products include unlimited complimentary support incidents within the first 90 days of product ownership, or longer if required by applicable law. Apple Watch Edition and Apple Watch Hermès come with 2 years of complimentary support.

    Will Apple pay you for an idea? ›

    They do accept them, however, just like Apple, they don't pay for your submitted proposals, but treat them as their own. So, if you feel altruistic, you can submit your idea through an online form, but don't expect money in return.

    Can you submit ideas to Apple? ›

    If you have an idea for an app or accessory that works with an Apple device, please feel free to submit it to us for a Brutally Honest Review and possible offer of a licensing deal.

    Can I sell my idea to a company without a patent? ›

    Yes, you can sell an idea to a company without a patent. However, the company needs to enter into a contract such as a nondisclosure agreement (NDA). Otherwise, they can steal your idea. Unfortunately, many companies will not enter into an NDA.

    Is investor relations a good career? ›

    For the right person, an investor relations career can be a good exit from IB/ER, but it's not the best entry point into finance. It doesn't give you many direct exit opportunities, and it's often a “jack of all trades” role.

    Do you make a lot of money in PR? ›

    Public Relations Specialists made a median salary of $62,800 in 2021. The best-paid 25% made $81,960 that year, while the lowest-paid 25% made $48,670.

    Is investor relations a finance job? ›

    What is a head of investor relations? A head of investor relations is a high-level professional in finance who helps companies maintain profitable investments and positive shareholder relationships. Their job can involve high volumes of research, as they often research new investments and current market trends.

    How much does a svp at Apple make? ›

    The estimated total pay for a Senior Vice President at Apple is $816,997 per year. This number represents the median, which is the midpoint of the ranges from our proprietary Total Pay Estimate model and based on salaries collected from our users.

    What is the salary range for Ic4 at Apple? ›

    Apple Salary FAQs

    The salary trajectory of a Senior Software Engineer (Ic4) ranges between locations and employers. The salary starts at $123,053 per year and goes up to $188,227 per year for the highest level of seniority.

    How much does an IC 4 at Apple make? ›

    Apple ICT4 Software Engineer Salary | $250K-$410K+ | Levels.

    What is the lowest salary at Apple? ›

    At Apple, the highest paid job is a Director of Engineering at $301,000 annually and the lowest is a Sales Associate at $35,000 annually. Average Apple salaries by department include: Communications at $225,140, Business Development at $214,819, Customer Support at $73,680, and Finance at $134,464.

    Who is the highest paid employee in Apple? ›

    The average Apple executive compensation is $235,778 a year. Apple's highest paid executives include: Johny Srouji $24,162,390 and Daniel J. Riccio $24,146,050. Comparably has 2 executive salary records from Apple employees including job titles like VP of Sales, VP of Engineering, and VP of Advertising.

    What is the minimum salary of Apple? ›

    Apple Salary FAQs

    The average Apple salary ranges from approximately ₹7,64,242 per year for a Siri Grading Analyst to ₹29,44,250 per year for a Senior Software Engineer.

    How much will Apple stock be worth in 5 years? ›

    Over the longer term, the site's five-year AAPL stock forecast was even worse, with the stock expected to be trading at $38.26 by January 2028.

    What is Apple stock outlook for 2023? ›

    Analysts are calling Apple stock a buy for 2023, with predictions ranging all over the place. Here are some of the analyst predictions that we found: John Donovan, an analyst from Loop Capital Markets, considers the stock a buy with a price target of $180 per share due to a major product launch around late 2023.

    What is the future of Apple stock 2025? ›

    The uptrend that will get the stock across the $300 mark in 2025 will last throughout 2026 too. By mid-2026, the price of the stock is expected to be $344.

    What is the highest dividend yield stock? ›

    20 high-yield dividend stocks to watch
    High-yield dividend stockTickerDividend yield
    Medical Properties Trust(NYSE:MPW)9.76%
    3M(NYSE:MMM)4.69%
    Pfizer(NYSE:PFE)3.44%
    Procter & Gamble(NYSE:PG)2.88%
    16 more rows

    How much was Apple stock in 1994? ›

    Compare AAPL With Other Stocks
    Apple Historical Annual Stock Price Data
    YearAverage Stock PriceYear High
    19940.25450.3240
    19930.30170.4759
    19920.39930.5080
    40 more rows

    How many times a year does Apple pay dividends? ›

    Dividend Summary

    There are typically 4 dividends per year (excluding specials), and the dividend cover is approximately 3.5. Our premium tools have predicted Apple Inc with 57% accuracy.

    Is 40f same as 10-K? ›

    Form 40-F is an annual filing that companies must fill out. 1 It is similar to the Form 10-K for U.S.-based companies in purpose and content.

    What is a Super 10-K? ›

    A Super 10-K will ensure that the SEC does not suspend their stock under Section 12(k) of the Exchange Act (which can happen even in the over-the-counter markets) and also can help a filer become more attractive to lenders.

    What is an 8K report vs 10-K? ›

    An 8-K is filed by a publicly traded company after an unscheduled material event occurs, whereas a 10-K is an annual report that is filed by a publicly traded company each year. Who files form 8K? Public companies are responsible for filing form 8-K with the SEC after the occurrence of a material event.

    Do private companies file 10-K? ›

    They are required to report results of any grouping of products or services that represents 10% or more of total revenues, assets or income. Companies define these groupings and report the results in the 10-K report.

    Who should file 10-K? ›

    What is a 10-K form? Every publicly traded company is required to file financial reports with the Securities and Exchange Commission, or the SEC. The Form 10-K offers a comprehensive snapshot of the company's financial health throughout the year, almost like an annual report for the business numbers.

    What does 10-Q stand for? ›

    What Is a 10-Q Filing? A 10-Q filing is a report that all public companies must submit to the Securities and Exchange Commission (SEC) after the end of each of their first three fiscal quarters (hence the "Q").

    What is Item 1 in a 10-K report? ›

    Item 1A “Risk Factors” includes information about the most significant risks that apply to the company or to its securities. Companies generally list the risk factors in order of their importance. In practice, this section focuses on the risks themselves, not how the company addresses those risks.

    What is an 8-K report? ›

    Form 8-K is known as a “current report” and it is the report that companies must file with the SEC to announce major events that shareholders should know about. Companies generally have four business days to file a Form 8-K for an event that triggers the filing requirement.

    What is a 6 K statement? ›

    The SEC Form 6-K is a form that foreign private issuers of securities are required to submit, pursuant to stated rules in the Securities Exchange Act of 1934. The Form 6-K, or “Report of Foreign Private Issuer Pursuant to Rules 13a-16 and 15d-16,” is administrated by the Securities and Exchange Commission (SEC).

    What is an investor relations contact? ›

    The investor relations (IR) department is a division of a business whose job it is to provide investors with an accurate account of company affairs.

    Does Apple have public relations? ›

    The brand is a master of innovative marketing and PR strategies. There is something unconventional about Apple's public relations strategy. However, it is also highly effective.

    Does Apple do public relations? ›

    Apple's worldwide communications team advises the world about the Company, our innovative products and services, and the values that drive our company. The team includes professionals with backgrounds in public relations strategy, journalism, marketing and event production.

    Does Apple have a PR department? ›

    Worldwide Communications. Kristin Huguet Quayle is Apple's vice president of Worldwide Communications, reporting to CEO Tim Cook. She is responsible for Apple's global communications strategy, leading the public relations team as well as employee communications.

    Is investor relations a good role? ›

    For the right person, an investor relations career can be a good exit from IB/ER, but it's not the best entry point into finance. It doesn't give you many direct exit opportunities, and it's often a “jack of all trades” role.

    What should I expect in an investor relations interview? ›

    In-depth questions

    Here are some questions interviewers may ask during your investor relations interview: Tell me about a time you demonstrated leadership skills in your current role. Give me an example of a time you disagreed with a coworker about a decision at work and how you resolved it.

    What can investor relations tell you? ›

    The role of investor relations within a company is to provide information regarding a company's past performance, future growth strategies, corporate policies, and to respond to corporate events that could impact share value.

    What are the 4 types of public relations? ›

    Now that we've established its meaning, we can dive into five types of public relations and how they can benefit you and your business:
    • Online and Social Media Communications. ...
    • Media Relations. ...
    • Crisis Communications. ...
    • Public Affairs. ...
    • Strategic Communications.
    Aug 18, 2022

    Who has the best public relations? ›

    Top PR agencies in the world
    1. Edelman. Edelman is a global communications company that partners with organizations and businesses to evolve, promote and protect their brands and reputations. ...
    2. Weber Shandwick. ...
    3. BCW. ...
    4. FleishmanHillard. ...
    5. Ketchum. ...
    6. MSL. ...
    7. Hill+Knowlton Strategies. ...
    8. Ogilvy.

    What is the number 1 rule of public relations? ›

    Rule One: Treat reporters with respect. They have a job to do. When they call with questions, give them the information they need without hassle. If the subject is complicated, put the reporter in touch with a specialist who can explain it.

    What are the 3 types of public relations? ›

    There are 7 different types of PR:
    • Strategic communications.
    • Media relations.
    • Community relations.
    • Internal communications.
    • Crisis communications.
    • Public Affairs.
    • Online and social media communications.
    Oct 31, 2019

    Does PR Take Apple pay? ›

    The Apple Card is available for residents of Puerto Rico. You can put your address in the application like any other state.

    What are the 3 P's of public relations? ›

    Every marketing textbook tells you there are four Ps of marketing — price, product, placement, and promotion. What the textbooks don't tell you is that in the rapidly evolving world of public relations, there are three more Ps to remember — personal relationships, patience, and persistence.

    How can I talk to a PR? ›

    1. Understand the overall utility of PR and what it can potentially do for you. ...
    2. Know if you're talking to a good PR person. ...
    3. Figure out if you really need PR right now. ...
    4. Understand what success might look like. ...
    5. Know the level of investment you want to make.
    Jan 27, 2017

    How do I get a PR contact? ›

    5 Easy Ways to Find Brand PR Contacts
    1. Get the contact from a press release. This is probably the number one way I've had success of finding a brand PR contact and the right one at that. ...
    2. Utilize LinkedIn to find brand PR contacts. ...
    3. Ask a friend. ...
    4. The brand website. ...
    5. Don't forget about social media.
    Jun 30, 2022

    Is it hard to get a job at Apple support? ›

    Yes, it is hard to get a job at Apple if you do not have the required experience and education. You have to be at least 18 years old with a high school diploma to work for Apple; however, most positions require a minimum of a bachelor's degree and several years of experience.

    Videos

    1. Apple (AAPL) Q2 2022 Earnings Call Webcast
    (Shacknews)
    2. Warren Buffett compares investing in Apple to farming
    (Yahoo Finance)
    3. Managers: From Italy to Top Global Businesses. Luca Maestri, CFO of Apple
    (iitaly)
    4. Shell CEO Wael Sawan on Q4 and full year 2022 results | Investor Relations
    (Shell)
    5. Apple Investor Relations 10K Annual Filing
    (Budget Bee)
    6. Apple AAPL stock analysis Legado Global
    (Legado Global)
    Top Articles
    Latest Posts
    Article information

    Author: Madonna Wisozk

    Last Updated: 04/23/2023

    Views: 5943

    Rating: 4.8 / 5 (68 voted)

    Reviews: 83% of readers found this page helpful

    Author information

    Name: Madonna Wisozk

    Birthday: 2001-02-23

    Address: 656 Gerhold Summit, Sidneyberg, FL 78179-2512

    Phone: +6742282696652

    Job: Customer Banking Liaison

    Hobby: Flower arranging, Yo-yoing, Tai chi, Rowing, Macrame, Urban exploration, Knife making

    Introduction: My name is Madonna Wisozk, I am a attractive, healthy, thoughtful, faithful, open, vivacious, zany person who loves writing and wants to share my knowledge and understanding with you.