I have the following line of code:
<li>
<label for="q2-1" onclick="setActive(this.id, 'question2-1-input');" id="q2-1-label"><input disabled="disabled" type="checkbox" name="question2" id="question2-1-input" value="1" />Opinions</label>
</li>
which calls:
function setActive(questionID, questionIDinput)
{
alert('setActive');
}
The above code works great in FF & Safari but not in IE. Is something above not IE friendly?
Thanks