Disclaimer
I struggled to find the answer yesterday, so I thought I'd post the answer here for everyone.
How can I access the content of an iframe with jQuery? I tried doing this, but it wouldn't work:
iframe content: <div id="myContent"></div>
jQuery: $("#myiframe").find("#myContent")
How can access myContent
?
Similar to jquery/javascript: accessing contents of an iframe but the accepted answer is not what I was looking for.