How can I do like for example, if we click over the label text, I want to toggle (check/uncheck) the checkbox of box.html page.
I've included the box.html page, with an iframe.
Index.html
<html>
    <body>
        <iframe src="box.html" height="25px" width="100px">
        </iframe>
        <label for="box">
            checkbox
        </label>
    </body>
</html>
Box.html:
<html>
    <body>
        <input type="checkbox" id="box">
    </body>
</html>