I am trying to run a function onclick of any button with class="stopMusic". I’m getting an error in Firebug
document.getElementByClass is not a function
Here is my code:
var stopMusicExt = document.getElementByClass("stopButton");
stopButton.onclick = function() {
var ta = document.getElementByClass("stopButton");
document['player'].stopMusicExt(ta.value);
ta.value = "";
};
You probably meant
document.getElementsByClassName()(and then grabbing the first item off the resulting node list):You may still get the error
in older browsers, though, in which case you can provide a fallback implementation if you need to support those older browsers.