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
https://forums.phpfreaks.com/topic/241075-simple-javascript-statement-not-working/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.