Here is a piece of html for a radio button that is currently selected:
<label>
<input type="radio" name="reason" value="1" data-promo="1">
"some text here bla bla"
</label>
With a line of JS I found over here I am able to grab the input element but not the text:
document.querySelector('input[name="reason"]:checked');
Returns:
<input type="radio" name="reason" value="1" data-promo="1">
How would I grab the text that follows this element "some text here bla bla"?