i have a HTML page that include in a iframe another page, like this:
<!DOCTYPE html>
<html>
<head>
<style>
iframe{width:100vw;height:100vh;border:0}
</style>
<script>
function reload(){setTimeout(function(){document.body.firstElementChild.src+="",reload()},300000)}reload();
</script>
</head>
<body>
<iframe id="mappa" src="*********"></iframe>
</body>
</html>
Now i want to run a command into in this iframe, like this: $(".SimpleSliderDecrementButton").trigger("click");
How can i made this command running into the iframe?