4

i am a beginer to javascript.I want to show a hidden textbox on a button click.i do the bellow code, but it doesnt work.

What is the problem with my code?

<!DOCTYPE html> <html> <head> <script type="text/javascript"> function display() { var z = prompt("enter your name..."); if(z != null) { document.getElementById("demo").innerHTML = "thankyou " + z + ".."; document.getElementById("case").style.visibility = 'visible'; } else { document.getElementById("demo").innerHTML = "thankyou"; } } </script> <title></title> </head> <body> <p id="demo"> click on the button..... </p><button type="button" onclick="display()">submit</button> <form> <input type="text" id="case" name="myText" style="display:none"> </form> </body> </html> 

4 Answers 4

13

replace

document.getElementById("case").style.visibility='visible'; 

with

document.getElementById("case").style.display='block'; 
Sign up to request clarification or add additional context in comments.

Comments

6

Change the style as display block instead of visibility,

document.getElementById("case").style.display='block'; 

or have your text box as visibility hidden instead of display:none

<input type="text" name=<name> style="visibility:hidden"/> 

1 Comment

Or inline since inputs are inline by default.
4

The following two statements will display the element with id "case":

document.getElementById("case").style.display='block'; 

or

document.getElementById("case").style.display=''; 

The following statement will hide the element with id "case":

document.getElementById("case").style.display='none'; 

Comments

0

Display:none works fine with HTML to hide a button

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.