Having issues when trying to insert an ajax response which is an html block into an element on IE 8
- by user340812
Hello Everyone just like my title states, I am having issues with IE8 and innerHTML. For whatever reason, when I make an ajax call which returns an html block and try to insert it into an element using innerHTML, the browser gives me an error "Unknown Error Code: 0".
The interesting part of this is that, if the message response does not have html element, innerHTML works. My code is like so:
setTimeout(function() {
element.innerHTML = context.response.message;
}, 1000).bind(context)
WORKS:
context.response.message = 'String';
Does not WORK:
context.response.message = '<p>String</p>';