I'm having trouble retrieving the value from the pickup-address
class. Here is my current code. Can anyone help me identify where I might be going wrong?
JS
var pickupAddress = $('.timeline-item.active-item > .timeline-status > .pickup-address').val();
alert(pickupAddress);
HTML
<div class="timeline-item active-item" style="background-color: rgb(255, 255, 255);">
<img src="https://s3.amazonaws.com/uifaces/faces/twitter/jsa/128.jpg" alt="" class="img-rounded profile">
<div class="timeline-status" style="width: 185px;"><strong>Stephen
</strong>
<br><span class="pickup-address">Whaddon</span> — <span class="dropoff-address">Bancroft</span>
<br><span class="timeline-substatus grey-status waypoints">Via Lathbury</span>
<br><span class="timeline-substatus grey-status remaining-seats">3 places remaining</span>
</div>
</div>