Below is the code snippet I am working with:
<blockquote class='mt20'>
<p><span>“</span><span>{{iq.quote}}</span><span>”</span></p>
<footer><cite class="dark-grey">{{iq.author}}</cite></footer>
</blockquote>
I have encountered an issue where this code causes IE8 to crash. After investigating, I discovered that the browser only crashes when the 'iq' object contains both the quote and author properties, not just one of them.
To retrieve my data, I utilize a custom function as follows:
this.get = function(){
var arr = {};
if(!arr.length){
$http.get('url').success(function(data){
$.extend(arr, data);
});
}
return arr;
}
The purpose of this function is to automatically bind the object, eliminating the need for manual tracking. It seems like the crash occurs during the data extension process when the view attempts to update. Any insights on how to resolve this issue?