I am trying to use lazyload on a page.
The code i have is:
$(function() {
$("img.lazy").lazyload();
});
However i want it to ignore all images that have the class “notlazy”. How do i put a condition in the selector?
Thanks in advance,
sorry for this primitive question.
Try:
There are a few other ways…