Networking | Hardware | Software | Multimedia | System | Unix&Linux | MBA

Home>>Hardware>>Input text filed

Input text filed

gapi78
10-12-2005, 09:13 AM
Hello,

i have a problem with a form which has 2 text fields and i would like to get it working so that you can write in one of them. for example: if they are both blank you can choose in which one you wat to write in but if field1 has some input you can't write in the field2 or reverse if field2 has some input you cant write in field1.

Thanks for you help

Kor
10-12-2005, 04:19 PM
I have tried to find a solution here, but it does not work quite good in FF. See:
here (http://www.codingforums.com/showthread.php?t=70057)

Pyth007
10-13-2005, 07:25 PM
How about:
<input type='text' name='field1' id='field1' value='' onBlur="if (this.value!='') document.getElementById('field2').disabled=true">

and vice vs. for field2....

vwphillips
10-13-2005, 08:12 PM
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>
<title></title>

<script language="JavaScript" type="text/javascript">
<!--

function Inhibit(obj,id){
document.getElementById(id).removeAttribute('disabled');
if (obj.value.length>0){
document.getElementById(id).setAttribute('disabled','disabled');
}

}

//-->
</script>
</head>

<body>
<input id="IP1" size="10" onkeyup="Inhibit(this,'IP2');" >
<input id="IP2" size="10" onkeyup="Inhibit(this,'IP1');">
</body>

</html>


 

TOP

For more info

setting a minimum size
Auto Preview of Image 
Refresh with a query s
JS Validation obsolete
Javascript Pop up func
Slide show transitions
I'm a newbie...please!
how to write coding in
Advanced Debug Info 
.js file doesn't work 

News Archive

Adding Graphic To Text
re-direct form after s
pop up window controls
Clock on homepage - He
passing a param from a
Password Procection wi
document.title in same
focus onload 
Counting Wrong from Ri
Help needed on how to 

Related stories:

onclick
Moz, onkeyup and readOnly problem
Create text boxes on the fly

Copyright@2004-2005 www.zzcoke.com All Right Reserved

advanced web statistics