I do not see any post related to this and so assuming that this problem is not common but I am not able to use dijit.Button with IE. I am getting an error 'Object required' javascript error. Works fine in Firefox.
<button id="submitPayload" dojoType="dijit.form.Button" onClick='postXhr();' disabled='false' iconClass="plusIcon">Submit</button>
My IE version is 7.0
Has anyone faced this problem?
Thanks

The dojo Button works fine
The dojo Button works fine in IE7.
If the function called by onClick exists and is not expecting a parameter, the only thing I see that is odd is that IE is not respecting your disabled markup as I expected. If you remove
disabled='false', the button is active and will produce an Alert when clicked, if you set onClick="alert('test');".Thank you
Thank you very much. It is working after I removed the disabled attribute and I did not change the function call.