According to http://msdn.microsoft.com/en-us/library/ms535934(v=VS.85).aspx and http://msdn.microsoft.com/en-us/library/ms535262(v=VS.85).aspx , I should be able to do the following to create a new checkbox:
var answer = document.createElement('input');
answer.setAttribute('type', 'checkbox');
answer.setAttribute('id', 'answer');
answer.setAttribute('value', 'a');
answer.appendChild(document.createTextNode('test'));
This works in Firefox and Chrome, but in IE 8, the last function call produces the following error message:
Error: Unexpected call to method or property access.
I have tried bypassing this by using the innerText attribute instead, but this approach receives the same error message.
Am I doing something wrong? If so, what? If not, how can I circumvent what appears to be nonsense?
I don't think you want to add a text node to your checkbox. Instead I would use a label object with two child nodes: the checkbox input and a text node: