Is there a way to globally add an `onerror` function for the `div.circle_thumb>img` event?
Instead of adding an `onerror` event to each img tag individually, such as shown below.
<div class="circle_thumb" ><img src="some/url" onerror="this.src=url/to/replaced" /></div>
I find this method to be quite bothersome. Is there a more efficient way to handle this?