I have a webpage that I want to connect though an IFRAME
. There is a checkbox on the page which I need to change the value of.
My IFRAME
is connecting to:
<iframe id="intranet" src="http://webmail.ucn.dk" width="100%" height="90%"></iframe>
Here's the checkbox:
<input id="chkBsc" name="chkBsc" type="checkbox" class="rdo" onclick="clkBsc()" value="1" disabled="">
This one as well...
<input id="chkBsc" name="chkBsc" type="checkbox" class="rdo" onclick="clkBsc()" value="1" enabled="">
I'm really stuck with this problem, I hope someone can guide me through to solve it. I read somewhere on the internet that Ii can change the variable with a jQuery but I couldn't find an answer.