How to get div id element in Javascript
Published: April 17, 2009 , Updated: September 28, 2010 , Author: mkyong
In JavaScript, you can use getElementById() fucntion to get any prefer HTML element by providing their tag id. Here is a HTML example to show the use of getElementById() function to get the DIV tag id, and use InnerHTML() function to change the text dynamically.
HTML…
<html> <head> <title>getElementById example</title> <script type="text/javascript"> function changeText(text) { elem = document.getElementById('textid'); elem.innerHTML = text; } </script> </head> <body> <div id='textid'>I'm a Text</div> <button onclick="changeText('Mkyong1');">Mkyong1</button> <button onclick="changeText('Mkyong2');">Mkyong2</button> </body> </html>
- If button “Mkyong1″ is clicked, the content of the div element, with an Id of “textid”, will be changed to “Mkyong1″.
- If button “Mkyong2″ is clicked, the content of the div element, with an Id of “textid”, will be changed to “Mkyong2″.
Any Java questions or problems? please post at this JavaNullPointer.com forum, see you there ~