| You are here: DEVPPL ‹ Forum ‹ Programming ‹ JavaScript Forum |
NOTIFICATIONS
|
|
|||||||||||||||
Login |
Passing to a Function
1 post
• Page 1 of 1
0
Passing to a Function
How do I pass an id to a function??
Or is this even possible.
Or is this even possible.
- Code: Select all
<html>
<head>
<title></title>
<script type="text/javascript">
function init(){
display(addText1);
display(addText2);
display(addText3);
display(addText4);
}
function display(var myText){
var newText = '<h2>' + "Will this change anything..." + '</h2>';
document.getElementById('myText').innerHTML = newText;
}
</script>
</head>
<body onload="init()">
<div id="addText1"></div>
<div id="addText2"></div>
<div id="addText3"></div>
<div id="addText4"></div>
</body>
</html>
- Hiyatran
- Reputation: 0
- Posts: 18
- Joined: Mon Jun 21, 2010 2:53 am
- Highscores: 0
- Arcade winning challenges: 0
|
|