innerHTML returns one word only

38 Views Asked by At
<body>
<p style="color:green" id="green" onclick=getIT("green beans")>1.Soy beans </p>


</body>
<script>




 function getIT (OneWord){
      var theWord= document.getElementById("green");

    theWord.innerHTML=OneWord;   }




</script>

The above code dosent change. if I type one word only it changes, but if I type a string it dosnt not change. Can't figure out why.

1

There are 1 best solutions below

1
On

Your html is invalid, you need to rewrite your onclick handler to use " before and after the function, then wrap your string in single quotes (') - or the other way around:

onclick="getIT('green beans')"

See this demo