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 can we use java script message alert with asp.net with useing vb.net coding show full process with its coading
How to clone an object in javascript?
since are functions need to create a webpage is available in dhtml& html. then why we are going for javascript
What are Cookies in Javascript?
Which built-in method calls a function for each element in the array?
What are the characteristics of javascript ‘strict mode’?
How to add behavior to an element using javascript?
Explain prototypal/differential inheritance?
What is the Infinity property used for in Javascript?
What is unobtrusive javascript?
Is javascript a security risk?
What is a function object?