I am creating a review screen for a form. The code writes to a new window, and I want to unhide certain div sections based on a dropdown selection. I'm having trouble getting the code to work because the <div> tags are in the code being writen to the new window. Here's my (sample) code...
I have a three page form, and I want each page to open in the same window, but when I use "location.href" it won't pass the data entered in page 1 to page 2, or page 1 & 2 to page 3. Anyone know how to make BOTH of these things (passing data AND opening in the same window) work at the same time...
I have a multi-page form that is working, but I want it to open Page2.htm in the same window. Here's my code:
Page1.htm:
<html>
<head>
<title>New User Request</title>
<script language="JavaScript">
function opwin(url) {
nwwin = window.open(url);
}
var prevRole = "";
function...
I have a two page form, and am trying to pass data from page one to page two. I can get most of it to go, except the "Role" shown in the code below. The Department field controls which "Role" is selected, but when I try to send it to the next page is says "undefined" for the "Role" field. Here's...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.