How to create the hidden text and show that when i click any button. With button type and tag div is a target. JavaScript.. | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 2

How to create the hidden text and show that when i click any button. With button type and tag div is a target. JavaScript..

<input type="button" value="Tampil"> That a button </input>. And show in <div id="target"> </div>…

6th Mar 2017, 2:01 PM
Zainal Mubarok
Zainal Mubarok - avatar
10 Réponses
+ 6
U can initially have CSS for target as: #target{ display:none; } Later attach a onclick on your button var showDiv = function (){ document.getElementById("target").style.display = 'block'; }
6th Mar 2017, 2:16 PM
Ashwani Kumar
Ashwani Kumar - avatar
+ 6
bro chechout my codes
6th Mar 2017, 4:17 PM
Suyash Purwar
Suyash Purwar - avatar
+ 4
It works. U can post ur code for reference if not working for u :)
6th Mar 2017, 3:34 PM
Ashwani Kumar
Ashwani Kumar - avatar
+ 3
U can check the value of display and alternatively flip it on button click var showDiv = function (){ var div = document.getElementById("target"); if(div.style.display==='none') div.style.display= 'block'; else div.style.display= 'none'; }
6th Mar 2017, 3:24 PM
Ashwani Kumar
Ashwani Kumar - avatar
+ 3
<input type="button" onClick="showDiv()" value="answer"> U need to execute showDiv() within onclick.
6th Mar 2017, 3:40 PM
Ashwani Kumar
Ashwani Kumar - avatar
+ 1
and how i show again? whit the same of button.
6th Mar 2017, 3:10 PM
Zainal Mubarok
Zainal Mubarok - avatar
+ 1
Thanks for your answer, i tryed but i can't see the respons of a button when i click. :(
6th Mar 2017, 3:28 PM
Zainal Mubarok
Zainal Mubarok - avatar
0
my html code: <h5> Do you tired? </h5> <input type="button" onClick="showDiv" value="answer"></input> <div id="target"> Yes iam tired now </div> my css code: #target { display:none; } my js code: var showDiv = function(){ document.getElementById("target").style.display='block'; } where my mistakes.?
6th Mar 2017, 3:36 PM
Zainal Mubarok
Zainal Mubarok - avatar
0
yeah.. that run. Thanks Ashwani Kumar. iam sorry but i just litle english. so, i think i can do how to hidden the text... where are you from.?
6th Mar 2017, 3:46 PM
Zainal Mubarok
Zainal Mubarok - avatar
0
@Suyash. that a beautyfull circle, can i save your code bro?
6th Mar 2017, 4:23 PM
Zainal Mubarok
Zainal Mubarok - avatar