About document.getElementID? Explain giving one example.
This was asked by a interviewer when i said that i know
some JavaScript.
Answers were Sorted based on User's Feedback
Answer / negi
using this u can access any html elements by its id.Here we
are going to access <tr> by its id("abc").when we click on
submit button javascript execute and <tr> will not be displayed.
<html>
<head>
<title>xxx</title>
<script language="javascript" type="text/javascript">
function change()
{
document.getElementById("abc").style='none';
return true;
}
</script>
</head>
<body>
<table>
<tr id="abc">
<td>you are great</td>
<td><input type="submit" name="submit" value=""
onClick="return change();"/></td>
</tr>
</table>
</body>
</html>
| Is This Answer Correct ? | 17 Yes | 6 No |
Answer / kishore.gsgs
using this u can access any html elements by its id.Here we
are going to access <input> textbox by its id("abc").when we
click on
submit button javascript execute and <tr> will not be displayed
<html>
<head>
<script type="text/javascript">
function change()
{
alert("success");
alert(document.getElementById("kishore").value);
}
</script>
</head>
<body>
<input type="text" id="kishore">
<input type="button" name="submit" value="submit"
onClick="change()"/>
</body>
</html>
| Is This Answer Correct ? | 7 Yes | 3 No |
How to write a function in javascript?
find the common prime divisors of two given numbers
What is difference between array.splice() and array.slice() method in javascript?
In Java coding we will write a public static void main()? Why won't we write as a static public void main()
What is the use of history object?
How do I use javascript to password-protect my web site?
Describe what u had done today?
What is the difference between .call() and .apply()?
How many data types are there in javascript?
java pgm for reads a file(text file) and removes all the spaces then the text and write this back into the same file. e.g: (Input) _______ chennai is fourth biggest city in india. (output) _______ chennaiisfourthbiggestcityinindia.
How to print a web page using javascript?
How to create an input box?