planeboy747
Technical User
To see the form I'm working on, go to:
You'll notice when the page loads there are Acceptance Terms section and an button (agree). When you click on the button, the script unhides what's behind, div id="second", which actually loads the form.
Here's the function I'm using to do this:
---------------------------------------------------
function authorize()
{
var elem = document.getElementById("second");
elem.style.display = "block";
}
---------------------------------------------------
When the script loads div id="second" I would like it to also hide div id="accTerms", but I'm not sure what to script in the above function that will do that?
You'll notice when the page loads there are Acceptance Terms section and an button (agree). When you click on the button, the script unhides what's behind, div id="second", which actually loads the form.
Here's the function I'm using to do this:
---------------------------------------------------
function authorize()
{
var elem = document.getElementById("second");
elem.style.display = "block";
}
---------------------------------------------------
When the script loads div id="second" I would like it to also hide div id="accTerms", but I'm not sure what to script in the above function that will do that?