Questions tagged [delayed-loading]

4 questions
1
vote
3 answers

Is there any way to postpone loading some modules in jQuery and MooTools?

Is there any built-in solution to postpone loading some modules after complete loading of page and some other essential modules, in jQuery and MooTools? Or is there a way to load wanted modules when they are need? for example by clicking on a…
Saeed
  • 7,262
  • 14
  • 43
  • 63
1
vote
1 answer

Attempts to load a texture show no error but the texture does not display

I have a model, a background sky and a ground surface. Texturing the surface results in no surface. I've tried the basic approach and come to the conclusion that it is probably that the scene is being rendered before the texture has finished…
0
votes
0 answers

Using singleton in delayed loaded shared library

I have a static C++ library that defines a singleton class. The static member variable of the singleton is a std::unique_ptr. I also have a shared library that defines a plugin which is delayed-loaded by the main application (using dlopen). Both the…
mojoritty
  • 153
  • 8
0
votes
1 answer

Loading page content and its CSS dynamically - how to prevent jump because CSS is not loaded yet?

On my website, I catch clicks on links to load the content of that page dynamically using AJAX. This new content may require some CSS file that isn't loaded yet. Setting the content of the target element to the response HTML will automatically load…
Aistina
  • 12,435
  • 13
  • 69
  • 89