<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test</title>
<style>
.test {
width: 240px;
height: 80px;
background: url(https://www.google.ru/images/branding/googlelogo/2x/googlelogo_color_120x44dp.png);
}
.test.lazy {
background: none;
}
</style>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script>
$(document).ready(function () {
setTimeout(function () {
$('.test').removeClass('lazy');
}, 0);
});
</script>
</head>
<body>
<div class="test lazy"></div>
</body>
</html>
function Timer(handler, interval) {
var timer;
this.start = function () {
timer = setInterval(handler, interval);
};
this.stop = function () {
clearInterval(timer);
delete timer;
};
}
delete log.handler
). В примере выше timer хранится в замыкании и подобное невозможно.