I am attempting to change the border image on click of a radio button and am doing the following:
<input type="radio" name="field" value="4" onclick="document.getElementbyId('pet').style.borderImage='url(http://ianon.info/pet_support/borders/pawprint.png) 120 round'"/>
I get the following error:
Uncaught TypeError: document.getElementbyId is not a function
Why does this work for the "border" option but not for the "borderImage" option. I'd like to define it onclick since all the JS functions I am defining in different parts of the document are not being recognized.
Typo.
document.getElementbyId
should bedocument.getElementById
. Notice the capitalization in the function name.