Someone Posted December 29, 2012 Share Posted December 29, 2012 Just thought I would share a good article about front end optimization http://developer.yahoo.com/performance/rules.html For tips such as: A good place to consider flushing is right after the HEAD because the HTML for the head is usually easier to produce and it allows you to include any CSS and JavaScript files for the browser to start fetching in parallel while the backend is still processing. Example: ... <!-- css, js --> </head> <?php flush(); ?> <body> ... <!-- content --> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.