Sometimes, we want to get the current location of an iframe with JavaScript.
In this article, we look at how to get the current location of an iframe with JavaScript.
Get the Current Location of an iframe with JavaScript
To get the current location of an iframe with JavaScript, we can use the src
property of the select element object to get the location of the iframe selected.
For instance, if we have the following iframe:
<iframe src='https://google.com'>
</iframe>
Then we write:
console.log(document.querySelector("iframe").src)
to log the value of the src
property of the iframe.
We select the iframe with document.querySelector("iframe")
.
Therefore, from the console log, we should see that the value is 'https://google.com/'
.
Conclusion
To get the current location of an iframe with JavaScript, we can use the src
property of the select element object to get the location of the iframe selected.