index.html with this code
<iframe src="other.html" width="100%" height="600px"></iframe>
<input type="button" id="btnOutside" value="Click me"/>
In the other.html I have this code:
<input type="button" id="btnInside" value="Other Click"/>
<script type="text/javascript">
$(document).ready(function() {
$("#btnInside").click(function () {
alert('inside');
});
});
</script>
I am trying to make that the outside button trigger the inside button like this in the index.html
<script type="text/javascript">
$(document).ready(function() {
$("#btnOutside").click(function () {
$("#btnInside").click();
});
});
</script>
But is is not working. What can I do??
Different iframes have different contexts and documents: when you invoke $('#btnInside')
, jQuery is executing in the host iframe and looking in that document, so it can't find it. If the nested iframe is on the same server though, you can tunnel through to its document from the host document:
$(document).ready(function() {
$("#btnOutside").click(function () {
$('iframe[src="other.html"]').contents().find("#btnInside").click();
});
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With