Jump to content

Simple JavaScript statement not working


cmattoon

Recommended Posts

I have a checkbox with an ID and NAME of "noexpire", and a Spry textbox with an ID and NAME of "expiration".

When the user checks the "noexpire" checkbox, I want the date "12/31/2099" to automatically populate the textbox.

 

I've tried several different arrangements of:

document.frmPass.expiration

document.getElementById('expiration')

document.getElementById("expiration")

 

as well as a few others, but for some reason, nothing appears to work. I'm not even getting a JavaScript error!

(I've also tried ".value" for both the checkbox and textbox..)

 

I tried an alert box, and the function is being accessed, but it won't do anything.

 

function doExpire(){
     document.getElementsByName("expiration").text=(document.getElementByName("noexpire").checked)?"12/31/2099":"";
}

 

Any ideas?

Thanks!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.