JSFiddle - React, Tailwind, and code Playground

HTML

<span class="historyMain">                                
                    
                    <span class="historyYear">2015</span>
                        <span class="historyBlock">
                          <a class="historyPointPic" href="#" alt="HELLA ia born - the company 'Westfälische Metall-Industrie Aktien-Gesellschaft' is formed"></a>
                          <span class="historyRod"></span>
                          <span class="historyText"></span>
                              <span class="historyInformation" style="display:none;">                                   
                                <span class="historyInformationTitle">Lorem ipsum Test Headline                         
                                </span>                                   
                                <span class="historyInformationImg">                          
                                  <img src="http://www.c-woermann.com/uploads/assets/thumbs/Logo_Hella.jpg" alt="">                        
                                </span>                                   
                                <span class="historyInformationText">1                         
                                </span>                               
                              </span>
                        </span>
                    
                        <span class="historyBlock">
                          <a class="historyPointPic" href="#" alt="dHELLA ia born - the company 'Westfälische Metall-Industrie Aktien-Gesellschaft' is formed2"></a>
                          <span class="historyRod"></span>
                          <span class="historyText"></span>
                              <span class="historyInformation" style="display:none;">                                   
                                <span class="historyInformationTitle">Lorem ipsum Test Headline                         
                                </span>                       ...

JavaScript

$(document).ready(function(){
    $("a.historyPointPic").each (function(){
        var window = $(".historyInformation", $(this).parent());
       // var year = $(".historyYear", $(this).parent()).text(); 
        //var year = $(this).parents('.historyYear').text(); 
    });    
});