Tagged Questions
The lazyload tag has no wiki summary.
5
votes
5answers
2k views
What is the best way to lazy load doubleclick ads that use document.write?
Ads requested via doubleclick often get served from an ad provider network that returns javascript that in turn performs document.write to place ads in the page. The use of document.write requires ...
4
votes
3answers
429 views
can you use jquery lazyload on all images (not just ones out of view)
i have a webpage with a lot of images (photo album). I am using lazyloading jquery plugin which is great to only load the images out of browser view when i scroll down.
The one issue i have is that ...
3
votes
4answers
224 views
Lazyloading Google API not working
Here's the deal. I've tried a number of methods of lazy loading the Google Maps API JavaScript, and every time in do it, with any Lazy Loader I use, FireFox "blocks." It lazy loads just fine in ...
3
votes
1answer
1k views
Fluent NHibernate LazyLoad Issues
I couldn't find an answer to this issue so I assume it is something I am doing wrong.
I have a PersistenceModel set up where I have set a convention as follows: -
...
3
votes
2answers
189 views
Early appendChild hell in top 3 browsers
I'm trying to lazy load javascripts, but I can't get it to work reliably. My pages load quite quickly and I want to keep it that way, so I'm not about to use a timeout to delay the loading. Besides ...
3
votes
5answers
2k views
Lazy Loading in NHibernate
If a Customer has many Orders attached to them. How would you lazy load the Orders List using NHibernate.
Is it something that needs to be set up mapping file? any help or an example would be great.
...
2
votes
2answers
290 views
Lazy load for nonnavigation property in EF 4.1
Is there a simple solution to make lazy load for nonnavigation property in the EF 4.1? For example, for byte array.
2
votes
1answer
719 views
Lazy loading a formula column in Fluent NHibernate
One of the property of my class is mapped to a function. My mapping looks like this:
mapping.Map(x => x.FormulaField, "FormulaField")
.Formula("FUNCTION_NAME")
...
2
votes
2answers
272 views
How can I trigger an image load by clicking other element rather than the image itself (Lazy Load jQuery plugin)?
In the Lazy Load plugin's documentation (A jQuery plugin that loads images only when an event occurs) says:
Event can be any jQuery event such as
click or mouseover. You can also use
your own ...
2
votes
3answers
445 views
Lazy loading in Hibernate
My Java Web application uses Hibernate to perform ORM. In some of my objects, I use lazy loading to avoid getting data until I absolutely need it. The problem is that I load the initial object in a ...
1
vote
1answer
92 views
Lazy Load Plugin for jQuery not compatible with HTML pushState()?
$(window).scroll(function() {
hash = $('.layer:in-viewport').attr('id');
if ( currentHash != hash ) { // fires it only one time when in-viewport
if ( history && ...
1
vote
3answers
81 views
Rails 3.1 won't lazy load when trying something like this: user.posts.class #=>Array
class User < ActiveRecord::Base
has_many :posts
end
class Post < ActiveRecord::Base
belongs_to :user
end
In irb:
> u = User.first
=> #<xxxxx>
> u.posts.class
=> Array
...
1
vote
2answers
85 views
“Lazyloading” information from a database on a PHP page in procedural
I know proper lazy loading usually requires using objects and a proxy pattern. I'm not there yet as a site needs some redesign. However, is there any way I can still spool out DB data to a page and ...
1
vote
1answer
304 views
Jquery LazyLoad.js Issue with Loading after Window Resize
Im running the LazyLoad script for my website and having an issue with one small aspect of it.
Im using Lazy Load on a Horizontal scroll (left to right) with fairly wide images. The script works ...
1
vote
1answer
841 views
Alternative til jQuery Lazyload
I have searched and searched, but didn't find what I was looking for, so sorry if it's already there. I did a photo blog for a friend and used to implement jQuery Jazyload ...
1
vote
1answer
311 views
Lazy Load images from HTTP on blackberry
is there also a way to lazy load images from HTTP on blackberry? thanks!
1
vote
3answers
990 views
Any idea why my Lazyload is not working?
Anyone have any idea why my lazy load does not seem to be working?
I copied exactly from the lazy load page even using their images as a test, they just load in normal rather than fade...?
lazy link ...
1
vote
1answer
390 views
Lazy Load, Lazier Load.. Control Fade Speed?
Normal lazy load plug in:
$(function() {
$("img").lazyload({
placeholder : "img/grey.gif",
effect : "fadeIn"
});
});
Can I control the speed of the fadeIn ...
1
vote
2answers
372 views
How to make 'will_paginate' lazyload in rails 3?
In rails3, almost all query interface change to be lazyloading now, but 'will_paginate' will hit the database imediately after you use the 'paginate' method. How can I make it lazyload records?
1
vote
3answers
622 views
LazyLoad Plugin
I am using jQuery Lazy Load to load thumbnails on a page I have a list of about 100+ thumbnails per page. This plug-in works perfect, until I introduce the plug-in Quick Pagination to display nine ...
1
vote
3answers
2k views
jQuery lazyload plugin
I've got a page that contains a list with about 100 images, and i dont want that the browser has to load all of it if the users only views approx. 10 of it.
So i've tried the jQuery.lazyload plugin ...
0
votes
0answers
33 views
Android LazyAdapter…Loading Image in ListView [closed]
Possible Duplicate:
about Android LazyAdapter…Loading Image in ListView
I used a Lazy Loader to load some images in my listView: the images are being loaded from a site.
I parse the ...
0
votes
1answer
56 views
Lazy load a group of divs with jquery
I'm having a hard time trying to implement a lazy load for a group of divs, I'm designing an administrative page that displays a lot of information, the information at the bottom I would like to fetch ...
0
votes
1answer
61 views
Want to limit jQuery.lazyload() to a specific DIV's images
we know lazy load plugin enable us to download images on demand which is out of visible area of page and when user scroll down and image place holders are getting visible then lazy load plugin ...
0
votes
0answers
55 views
Gridview and lazy load plugin
suppose i am showing 20 employee detail through gridview at a time. like
employee name,photo,other misc detail
according to my requirement i am not sure whether jquery lazyload plugin will solve my ...
0
votes
1answer
90 views
Lazy loading or on demand
This is my web: http://www.alvaromillan.es.
I've proved almost everything but the loading is still taking too long... I think the problem could be the javascript which load all the images... I'd like ...
0
votes
1answer
43 views
NHibernate Lazy Loading Behaviour
I was reading this article on Nhibernate Lazy Loading http://nhforge.org/wikis/howtonh/lazy-loading-eager-loading.aspx and it uses and example of a class structure like this:
The article then shows ...
0
votes
3answers
107 views
Lazy load from database as user scrolls down page (similiar to Twitter and Facebook)
I have a coupon code site. On some category pages I'm limiting it to display only 50 coupons as there are potentially 1000's of coupons for each category. I don't display them all as it would be hard ...
0
votes
1answer
64 views
JavaScript not working in IE 6/7 for my website
I have some code running on my website which will detect if a div with the id, photo, is showing on the screen or is scrolled onto the screen. If the div is showing, a class is added to the div which ...
0
votes
1answer
47 views
How load a list of object in a Entity by Nhibernate Lazy Loading
I have a project by NHibernate implementation and using Lazy Loading.
I have two class in this project : Person and Family.
Relation between Those two is aggregation, is mean a Person has a list of ...
0
votes
2answers
196 views
one .js to load all .js and .css
I need to create a simple javascript embed type thing where the user adds a small amount of javascript to their site and my script does the rest.
This is the sort of thing I would like to see on the ...
0
votes
3answers
210 views
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
I have 2 physical servers which my web application hits managed by load balancers. I always get -
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
when one of the ...
0
votes
2answers
443 views
Javascript/Jquery Lazy load not supported..How does facebook do it?
So I am trying to implement a basic image lazy load feature to speed up the loading of my website. From what I understand the Jquery plugin lazyload worked for a while but is no longer supported for ...
0
votes
2answers
159 views
Delay loading for specific elements with Jquery
I'm a JS/JQ noob trying to delay the loading of certain elements until the rest of the page has loaded.
Specifically, there are several lists per page containing social media iframes/remote scripts ...
0
votes
0answers
126 views
Lazy Load - hide container of the image
Im trying to do the following:
Use lazy load on images, but when an image is'nt loaded hide
(or add style) to the containing div.box-project:
<div class="box-project">
<img ...
0
votes
0answers
155 views
Lazy Load, Easing the fade?
Ref: http://www.appelsiini.net/projects/lazyload/jquery.lazyload.js
Normal lazy load plug in...
$(function() {
$("img").lazyload({
placeholder : "img/grey.gif",
effect ...
0
votes
0answers
288 views
jquery content slider (like fancymoves) + lazyload
I'm wondering if is possible to use a content slider like the excellent FancyMoves and the Lazy Loading plugin, in order to improve loading time of the page with 40 images in the slider.
I hope ...
0
votes
2answers
244 views
is it possible to disable lazyload (so all images gets loaded..)?
i have a site using jquery lazyload
its working fine, but now i want to be able to disable this function.
the reason is, that you can normally scroll through the images, which is fine, but i also do ...
0
votes
1answer
366 views
Lazy Load Images In ASP.NET
I have div that contains quite a few images. When I say quite a few, the number of images could be in their hundreds.
I have some jQuery for the div that contains my images to scroll through all the ...
0
votes
2answers
70 views
nhibernate lazyload creates new isession
Can I prevent nhibernate creating new ISessions when lazy loading? How?
Correction: I mean new IDbConnections. I have implemented my own DriverConnectionProvider and I see it gets called due to lazy ...
0
votes
0answers
181 views
ContentFlow Doesn't Work under jquery.lazyload?
Dear friends,
I use ContentFlow on my site, it works well till I add jQuery.LazyLoad Plugin.
Do you have this problem?
Please help me. Thank you.
0
votes
1answer
286 views
JQuery localscroll slow movement
I am building a scrolling website using JQuery localscroll, building on a few demo's I have seen, I have built this site so far: http://sproutdesigns.co.uk/clients/scroll
The problem seems to be that ...
0
votes
2answers
886 views
Fluent NHibernate + Disable LazyLoad
Hey there, I've tried to disable LazyLoad on my collections without luck... The code I've tried so far is:
// Person.cs
public class Person
{
public virtual int Id { get; private set; }
...
0
votes
2answers
125 views
Slider loading after entire pages loads
I am using looped slider js for implementing a slider in wordpress. Basically i want to add my slider when entire page loads.
please help me. I tried lazyload plugin for that but wont get any success.
...
0
votes
2answers
294 views
I want increase the scrolling performance in my table view with images in iphone?
I am new to iphone development.I am parsing a xml and display the title,date,contents and image in the cell,Now the scrolling is not smooth, it struck.How can i increase it.I have already applied lazy ...
0
votes
1answer
189 views
How to disable lazyload in subsonic programmatically?
By default if the table has FK, subsonic also retrieves data of the FK table.
Is it possible to disable this?
0
votes
2answers
1k views
jQuery.load() - Inside External Javascript
i load an external page with
$('#myContainer').load('myfile.html');
in myfile.html theres an
<script type="text/javascript" src="otherscript.js"></script>
Some users report that ...