It\'s hard to work on terrible markup, it just not don\'t have class it look something like this:
p br1 br2 br3
p
You can try to use nextSibling DOM property:
$( 'br' ).each( function() { console.log( $( this ).get( 0 ).nextSibling.nodeValue ); });
jsFiddle