Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You can use the concept of lazy loading.</p> <p>You can load only content that is necessary during the load then using jquery and ajax you can load the remaining content.</p> <p>In this way user can surf and interact easily with the the part already loaded while the other part will be loading asynchronously.</p> <p>jQuery <a href="http://api.jquery.com/jQuery.ajax/" rel="nofollow noreferrer">ajax</a> or <a href="http://api.jquery.com/jQuery.post/" rel="nofollow noreferrer">post</a> method can help you on this.</p> <p>A simple example could be, </p> <p>If There are 5 parts of contents in your page, 2 needs to be loaded immediately</p> <ol> <li><p>The page will be loaded with 2 parts loaded, so it will take quite less time than 5 parts loading</p></li> <li><p>After document is loaded you will use ajax to load the remaining 3 parts. Ajax will send request to the specific page of your website(can be possibly named AjaxRequestHandler.php) with some parameters, and this page will process your request and generate html for this and will send it back to your main page which will just show this returned html and this all be happening asynchronously, so the user will be able to communicate with the initially loaded 2 parts </p></li> </ol> <p>And even if you are new to web technologies, I suppose you have to have the knowledge of atleast ajax and asynchronous calls etc. to achieve lazy loading.</p> <p><strong>Edit :</strong></p> <p>For your this question</p> <blockquote> <p>Except AJAX Is there way around for this?</p> </blockquote> <p>I think you can try iframes if they can help.</p> <p>Loading the main content in the page load without iframe while loading other contents in the iframes after pages is loaded.</p> <p>This jsFiddle </p> <p>jsfiddle.net/cGDuV/ </p> <p>can help you understand lazy loading with iframe, mentioned in this <a href="https://stackoverflow.com/questions/7154958/lazy-load-iframe-delay-src-http-call-with-jquery">post</a> of stackoverflow.</p> <p>You can use javascript for the same if you want to avoid jquery.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload