I'm designing a small (literally and figuratively) site that will solely be displayed on the Bold 9000. I have the following code:
Code:
function clickToday() {
document.getElementById("notes").removeChild(document.getElementById("notes").lastChild);
document.getElementById("notes").appendChild(document.createTextNode("blah blah"));
}
...
<select name="opt1" id="opt1" onChange="selectToday()" onClick="clickToday()"> The selectToday function is identical except for the created text string. The onClick and onSelect functions fine in Firefox but only the onSelect functions work on the Bold's internet browser. I've tried removing the onSelect and leaving only the onClick but that didn't work either. Does anyone know if the Bold's browser supports onClick inside of a select tag? I checked RIM's JavaScript reference and it doesn't mention it specifically.