I'm working on a solid-js
application containing an iframe containing a website of my own design. The website contains links to pages of other domain names. I would like to know if it is possible for me to get the title of the current webpage contained in my iframe. I've read several stack overflow questions saying that it's impossible to get the title of a web page from another domain for security reasons. However, the web pages whose title I am looking for can be loaded in my iframe therefore allow the connection, that's why I wonder if in this case I can get their title. Here is the code of my iframe:
<iframe
width="100%"
height="1300"
id="myiframe"
src="https://gkwhelps.herokuapp.com"
></iframe>