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 use external JavaScript file?
How to get height and width of different browser in Javascript?
If an array with name as "names" contain three elements, then how will you print the third element of this array?
What are local variables in javascript?
What is meant by object oriented programming?
Explain unescape() in javascript?
What is encodeuri() in javascript?
What is the difference between JavaScript and jscript?
What are self Executing Functions?
What is enum data type?
What is whitespace in javascript?
What are the uses of javascript in web page designing?