We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d3b021 commit 71146c8Copy full SHA for 71146c8
demo/infinite.htm
@@ -16,9 +16,10 @@
16
</style>
17
<script>
18
$(document).ready(function () {
19
- $('#marker-end')
20
- .on('lazyshow', function () {
21
- $.ajax({
+ if(!$.lazyLoadXT.forceLoad) {
+ $('#marker-end')
+ .on('lazyshow', function () {
22
+ $.ajax({
23
url: 'infinite.htm',
24
dataType: "html"
25
})
@@ -34,8 +35,9 @@
34
35
$(window).lazyLoadXT();
36
$('#marker-end').lazyLoadXT({visibleOnly: false, checkDuplicates: false});
37
});
- })
38
- .lazyLoadXT({visibleOnly: false});
+ })
39
+ .lazyLoadXT({visibleOnly: false});
40
+ }
41
42
</script>
43
</head>
0 commit comments