How prevent useless content load on the page in Responsive Design
Posted
by
Ícaro Leandro
on Programmers
See other posts from Programmers
or by Ícaro Leandro
Published on 2012-03-29T12:51:38Z
Indexed on
2012/03/29
17:42 UTC
Read the original article
Hit count: 328
In Responsive Design, we hide elements in the page with @media
queries and display: hide
in the CSS.
Ok,
But in my system:
Browsers that have less than width: 800px
, the layout must hide some content, not only hide, but avoid them load fully.
I mean, in access with desktop with more than 800px of screen, the page load fully;
In mobile devices, or even in desktop with less than 800px, not load some content.
I want to make the page load faster in this browsers.
The system are maked in PHP and have some Javascript.
Thanks...
© Programmers or respective owner