Reputation: 72
Looks like document.all method is not available in IE11. So what is best way to make available or what is alternative of that?
Upvotes: 1
Views: 358
Reputation: 121
This is not standard and should not be used. As per MDN: https://developer.mozilla.org/en-US/docs/Web/API/Document#
As per Microsoft: https://msdn.microsoft.com/library/bg182625(v=vs.85).aspx#docmode
Use document.getElementById
instead
Upvotes: 1