Im using a video site with wordpress and My lazyload works in this way
<img class="b-lazy" src=data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== data-src="images/image.jpg" data-src-small="images/image.jpg" alt="alt text" class="tmb_img"/>
I figuret it out for the wordpress thumbnails But as Im using a video grabber wich grabs the multi thumbnails
the images come from the plguin in this form;
<img id="latest-196" class="img-responsive" alt="alt text" onmouseout="thumbStop('latest-196', 'xxxxxx/wp-content/uploads/multi-thumbs/96/', '3');" onmouseover="thumbStart('latest-196', 15, ''xxxxxx/wp-content/uploads/multi-thumbs/96/');" src="'xxxxxx/wp-content/uploads/multi-thumbs/96/196_3.jpg">
Is there any way to convert the second type with the first one using any function to add lazy loading?
I hope You understand my question Thanks.