NVIDIA Corporation - Financial Reports (2024)

', categories : [{ title : 'Press Releases', category : ['news'], reportType : ['First Quarter', 'Second Quarter', 'Third Quarter', 'Fourth Quarter'], text : '{{shortType}}', cssClass: 'module-financial-table_item module-financial-table_item--news module-financial-table_item--quarterly' },{ title : 'Audio Webcast', category : ['webcast'], reportType : ['First Quarter', 'Second Quarter', 'Third Quarter', 'Fourth Quarter'], text : '{{shortType}}', cssClass: 'module-financial-table_item module-financial-table_item--webcast module-financial-table_item--quarterly' },{ title : 'CFO Commentary', category : ['cfo'], reportType : ['First Quarter', 'Second Quarter', 'Third Quarter', 'Fourth Quarter'], text : '{{shortType}}', cssClass: 'module-financial-table_item module-financial-table_item--10q module-financial-table_item--quarterly' },{ title : 'NVIDIA Quarterly Revenue Trend', category : ['revenue'], reportType : ['First Quarter', 'Second Quarter', 'Third Quarter', 'Fourth Quarter'], text : '{{shortType}}', cssClass: 'module-financial-table_item module-financial-table_item--presentation module-financial-table_item--quarterly' // },{ // title : 'IR Quarterly Newsletter', // category : ['newsletter'], // reportType : ['First Quarter', 'Second Quarter', 'Third Quarter', 'Fourth Quarter'], // text : '{{shortType}}', // cssClass: 'module-financial-table_item module-financial-table_item--transcript module-financial-table_item--quarterly' },{ title : 'Form 10-Q/Form 10-K', category : ['10Q','10K'], reportType : ['First Quarter', 'Second Quarter', 'Third Quarter', 'Fourth Quarter'], text : '{{shortType}}', cssClass: 'module-financial-table_item module-financial-table_item--transcript module-financial-table_item--quarterly' },{ title : 'Quarterly Presentation', category : ['presentation'], reportType : ['First Quarter', 'Second Quarter', 'Third Quarter', 'Fourth Quarter'], text : '{{shortType}}', cssClass: 'module-financial-table_item module-financial-table_item--presentation module-financial-table_item--quarterly' }, { title : 'Annual Review, Proxy Statement and 10-K', category : ['file'], reportType : ['Annual Report'], text : '{{shortType}}', cssClass: 'module-financial-table_item module-financial-table_item--annual' }, // { // title : 'Proxy Statement', // category : ['proxy'], // reportType : ['Annual Report'], // text : '{{shortType}}', // cssClass: 'module-financial-table_item module-financial-table_item--proxy' // } ], shortTypes : { 'First Quarter' : 'Q1', 'Second Quarter' : 'Q2', 'Third Quarter' : 'Q3', 'Fourth Quarter' : 'Q4', 'Annual Report' : 'Annual Report' // "Proxy Statement":'Proxy Statement', }, template: ( '

' + '

' + '{{#categories}}' + '

' + '

{{{catTitle}}}

' + '

' + '{{#catYears}}'+ '

' + '{{#docs}}' + '' + '{{#url}}' + '{{{text}}} {{#blank}}(opens in new window){{/blank}}' + '{{/url}}' + '{{^url}}' + '{{shortType}}' + '{{/url}}' + '' + '{{/docs}}' + '

' + '{{/catYears}}'+ '

' + '

' + '{{/categories}}' + '

' ), reportSubType : ['First Quarter', 'Second Quarter', 'Third Quarter', 'Fourth Quarter', 'Annual Report'], beforeRender: function(e, data) { var schema = { "Annual Reports": ['Annual Report'], // "Proxy Statement": ['Proxy Statement'], "Press Releases": ['Q1', 'Q2', 'Q3', 'Q4'], "CFO Commentary": ['Q1', 'Q2', 'Q3', 'Q4'], "Audio Webcast": ['Q1', 'Q2', 'Q3', 'Q4'], "NVIDIA Quarterly Revenue Trend": ['Q1', 'Q2', 'Q3', 'Q4'], "IR Quarterly Newsletter": ['Q1', 'Q2', 'Q3', 'Q4'], "Form 10-Q": ['Q1', 'Q2', 'Q3', 'Q4'], "Form 10-Q/Form 10-K": ['Q1', 'Q2', 'Q3', 'Q4'], "Earnings Presentation": ['Q1', 'Q2', 'Q3', 'Q4'] } $.each(data.categories, function(index, category){ var type = category.catTitle; $.each(category.catYears, function(idx, year){ var quarter = []; $.each(year.docs, function(i, doc){ quarter.push(doc.shortType) // Make sure any local links open in the same window var url = doc.url.toLowerCase().split('.'); if ( url[url.length-1] != 'aspx' ) { doc.blank = true; } // Show HTML when there's no fileType. In case in template instead of {{text}} it's {{shortType}} adjust accordingly. doc.text = (doc.fileType == null && doc.shortType == 'AR') ? 'HTML' : doc.text; }); if (schema[type] !== undefined ) { $.each(schema[type], function(i, compare){ if ( $.inArray(compare, quarter) == -1 ) { year.docs.push({ shortType: compare, catClass: 'module-financial-table_item module-financial-table_item--empty' }); } }); year.docs.sort(function(a,b) { if (a.shortType < b.shortType) return -1; if (a.shortType > b.shortType) return 1; return 0; }); } }); }); }, beforeRenderItems:function(){ // $('.module-financial-table_item--news a').attr("target","_self"); }, complete: function(e) { // $('a.module-financial-table_link.Proxy.Statement').text('Proxy Statement'); $('a.module-financial-table_link.Annual').parent().css("border","none"); $('.module-financial-table_item--news a').attr("target","_self"); $(e.target).find('.module-financial-table_body-year-container').slick({ infinite: false, slidesToShow: 3, slidesToScroll: 1, autoplay: false, swipe: false, draggable: false, arrows: false, responsive: [ { breakpoint: 1024, settings: { slidesToShow: 3 } }, { breakpoint: 768, settings: { slidesToShow: 2 } }, { breakpoint: 480, settings: { slidesToShow: 1 } } ] }); $('.module-financial-table_header-year-container').slick({ infinite: false, slidesToShow: 3, slidesToScroll: 1, autoplay: false, swipe: false, draggable: false, asNavFor: '.module-financial-table_body-year-container', prevArrow: '', nextArrow: '', responsive: [ { breakpoint: 1024, settings: { slidesToShow: 3 } }, { breakpoint: 768, settings: { slidesToShow: 2 } }, { breakpoint: 480, settings: { slidesToShow: 1 } } ] }); /* Slick Accessibility Fix */ $('.slick-slider').each(function(){ if ( !$(this).find('.slick-dots').length ) { $('.slick-slide').each(function () { var $slide = $(this).parent(); if ($(this).attr('aria-describedby') != undefined) { $(this).removeAttr('aria-describedby'); } }); } }); } });

Quarterly Results

' + '

' + '{{/items}}' ), beforeRender: function(e, data) { $.each(data.items, function(idx, item) { $.each(item.docs, function(idx, doc) { // Make sure any local links open in the same window var url = doc.docUrl.toLowerCase().split('.'); if ( url[url.length-1] != 'aspx') { doc.blank = true; } }); }); }, complete: function() { $('.module-quarterly-results a[href*=".pdf"]').each(function() { $(this).addClass('pdf'); }); $('.module-quarterly-results a[href*="news"]').attr("target","_self"); }});

NVIDIA Corporation - Financial Reports (2024)
Top Articles
Latest Posts
Article information

Author: Merrill Bechtelar CPA

Last Updated:

Views: 6454

Rating: 5 / 5 (70 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Merrill Bechtelar CPA

Birthday: 1996-05-19

Address: Apt. 114 873 White Lodge, Libbyfurt, CA 93006

Phone: +5983010455207

Job: Legacy Representative

Hobby: Blacksmithing, Urban exploration, Sudoku, Slacklining, Creative writing, Community, Letterboxing

Introduction: My name is Merrill Bechtelar CPA, I am a clean, agreeable, glorious, magnificent, witty, enchanting, comfortable person who loves writing and wants to share my knowledge and understanding with you.