I am trying to add title tags to frames within an iframe. All files reside on the same domain.
The full selector for the html page I am loading within the iframe is "html > frameset:nth-child(2) > frame:nth-child(1)"
However using even the following code does not update the attribute for any frames within the iframe.
$('#project_frame').contents().find('frame').attr('title','Table of Contents');
<iframe id="project_frame" name="project_frame" src="<?= $uri ?>" frameborder="0" title="project_frame"></iframe>