How can I pass inputs using window.open from a parent to a child window without using the querystring? I need to pass them to the child window and then get them back into VBScript(or at least HTML), so I can reprint the form in the child.
I can get them passed into an array in the child...
I've got a problem using javascript in the onBlur for a social security number input. The javascript function I am using is as follows:
function checkSSN() {
var SSN = document.getElementById('SSN');
var nums = SSN.value.replace(/[^0-9]/ig, '');
if (!nums) {
return;
}
if (nums.length ==...
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.