<a href="http://something-new2.com" data-frame3="http://something-new3.com" target="frame2">LINK</a>
<iframe id="frame2" src="http://something2.com">
<iframe id="frame3" src="http://something3.com">
$('[data-frame3]').click(function() {
let thisSrc = $(this).data('frame3');
$('#frame3').attr('src', thisSrc);
});