below is my code i want to know to how to work on every onclick function it is working one time but i want to know to work multipletime
when i click on Plus Image and it goes on enbrow() function then3 text box open but when i click on again Plus Image and it goes on First() function then text box is not showing so i want to know how to open text box on every java script function i want to open ten time means 10 time i want to click on plus symbol and 30 text box open
i give you below code so please help me
function enbrow() {
alert("enable first row");
document.getElementById("firstrw").style.display = "block";
}
function First() {
alert("You clicked One");
document.getElementById("firstrw").style.display = "block";
}
function Second() {
alert("You clicked two");
document.getElementById("firstrw").style.display = "block";
}
<%--
1 Reply
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.

Krishna Rajput SinghPosted Mar 20, 2017, 1:43 AM