25 Ways and Tips to Increase Web Page Loading Speed

25 Ways and Tips to Increase Web Page Loading Speed
Introduction <br />Not everyone has access to a high-speed Internet connection. Even if everyone has access to a high-speed network, there are a variety of reasons why your Web application may appear to be running slowly. In this age of increasing broadband speeds, you should keep an eye on page load times. Shave seconds off precious page load times and milliseconds off even more precious request and response times. You’ll create a better experience for your visitors.

After reading this article, you will have a good understanding of the basics of web page loading time optimization. You’ll also be able to use the tools and knowledge to better identify and diagnose slow-loading page sections and bottlenecks.

Prerequisites <br />Ideally, you should have Mozilla Firefox installed. You should also have a general understanding of web development. The topics covered in this article are not complex, but if you know topics such as Hypertext Markup Language (HTML), Cascading Style Sheets (CSS), and the ™ programming language, you will be more comfortable studying this article. No IDE required, just your favorite editor.

You must have JavaScript enabled in your browser. Additionally, to learn about Firebug and YSlow, you'll need to have the Firefox web browser installed.

If you don't have broadband
Many people access the Internet through some form of broadband connection, be it DSL, cable, fiber optic, or some other method. However, users who do not have access to such technology are forced to use dial-up connections. You've surely forgotten what it was like to surf the Internet on dial-up, but try to remember when web pages loaded line by line.

Fortunately, these poor people are now able to get some help. You can improve their experience by reducing the time it takes to load your page. However, dial-up connections are not the only cause of slow loading and responsiveness. Many Web designers mistakenly believe that the advent of high-speed Internet connections makes optimizing Web site performance unnecessary. This view is incorrect. For example, many tasks that were once performed using desktop software can now be performed online. It is very difficult to get a fast and responsive experience in a web application like desktop software, so performance optimization is very important. Fortunately, there are tools and best practices that can be used to improve response and load times, providing a smoother experience.

Essential Tools <br />For all optimization-related tasks, you must use tools to diagnose bottlenecks and identify problems. The two most widely used tools in Web development today are Firebug and YSlow, both open source, free Firefox add-ons.

Firebug
One of the most popular Firefox extensions is Firebug (see Resources), an application that makes the work of Web developers easier. It includes many very useful features, such as:

JavaScript debugging

JavaScript command line to monitor JavaScript performance and track XmlHttpRequests
Log in to the Firebug console Tracking Inspect HTML elements and dynamically edit HTML code Dynamically edit CSS documents

YSlow

YSlow (see Resources) analyzes a web page and tells you why it's loading slowly, based on the high-performance web rules drafted by Yahoo! (see Resources). YSlow is a Firefox plugin that integrates with Firebug, so you need to install Firebug first before you can install and use YSlow.

Install Firebug

The installation process for both Firefox extensions is very simple. To install Firebug, perform the following steps:

  1. Open Firefox and go to the Firebug homepage.
  2. Install the latest version of Firebug.
  3. If Firefox is configured to block pop-up windows, click Allow to allow the installation window to open. Otherwise, click Install Now.
  4. Restart Firefox.

You can now access Firebug from the Tools menu. You can open Firebug in a new window or in an existing window (see Figure 1).




Install YSlow

After installing Firebug, next install YSlow. To do this, perform the following steps:

1. Open Firefox and go to the YSlow homepage.
2. Install the plugin and restart Firefox. NOTE: Unlike many other Firefox extensions, YSlow does not start automatically. It must be activated first.
3. To activate YSlow, right-click its icon in the status bar and click Autorun.
Figure 2 shows the results of the YSlow performance analysis.

Figure 2. YSlow performance analysis of the Firefox start page

b7


Common sense: keep the design rules in mind

It’s amazing how often simple design rules are ignored, resulting in unoptimized, slow-downloading web pages. Keep the following rules in mind and your pages will load faster.

Use good structure
Extensible HTML (XHTML) has many advantages, but its disadvantages are also significant. XHTML may make your pages more standards-compliant, but its heavy use of tags (mandatory <start> and <end> tags) means more code for the browser to download. So, there are two sides of the coin, try to use less XHTML code in your web pages to reduce the page size.

If you really have to use XHTML, try to optimize it as much as possible. For example, removing whitespace and using strict XHTML coding practices can increase download and parsing speeds. To strictly enforce XHTML Strict rules, add the following doctype statement to your document:


Copy code
The code is as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

XHTML 1.0 Strict is equivalent to Strict HTML 4.01, and includes attributes and elements that are not present in the deprecated HTML 4.01 specification. Remember, there are two tags that can be used in XHTML Transitional but not in XHTML Strict, for example:

<center>
<font>
<iframe>
<strike>
<u>

Don't overload your layout

Before blogs (and new sites) became popular, it was considered bad practice to make pages scroll horizontally or even vertically. The smaller the page, the harder (but not impossible) it is to fit neatly on the screen. Nowadays, for blogs and content-driven websites, it is not uncommon to see long pages that are several hundred kilobytes in size. Yes, you need to fill more space, but that doesn’t mean you have to fill it with big background images, lots of tables, or a lot of content. Adhere to the principle of simplicity: less is more. The page is filled with various types of images, videos, advertisements, etc., which greatly violates the principle of practicality. Therefore, please think twice before adding content to the page.

Don't use images to represent text

Unlike fonts, which we rarely control how they display in different browsers, images always display exactly the way they were designed. But this is no excuse for using images to represent text.

The most common example of using images to represent text is in navigation bars. Beautiful buttons are more attractive, but they load slowly. Furthermore, images are still not directly indexable by search engines, so using images for navigation is not good for search engine optimization (SEO). Never use images to represent text when you can create beautiful buttons without them through a lot of CSS tricks.

One specific type of navigation that lends itself to CSS styling is tabbed navigation, as shown in Figure 3.

Figure 3. Tabbed navigation



Besides being smaller, this way of implementing navigation is more in line with web standards.

The code in Listing 1 and Listing 2 implements the tab-based navigation functionality in pure CSS/XHTML.

Listing 1. CSS document for tab-based navigation


Copy code
The code is as follows:

#nav {
float:left;
width:100%;
background:#E7E5E2;
font-size:95%;
line-height:normal;
border-bottom:1px solid #54545C;
}
#nav ul {
margin:0;
padding:10px 10px 0 50px;
list-style:none;
}
#nav li {
display:inline;
margin:0;
padding:0;
}
#nav a {
float:left;
background:url("tableftK.gif") no-repeat left top;
margin:0;
padding:0 0 0 4px;
text-decoration:none;
}
#nav a span {
float:left;
display:block;
background:url("tabrightK.gif") no-repeat right top;
padding:5px 15px 4px 6px;
color:#FFF;
}
/* Commented Backslash Hack hides rule from IE5-Mac \*/
#nav a span {float:none;}
/* End IE5-Mac hack */
#nav a:hover span {
color:#FFF;
background-position:100% -42px;
}
#nav a:hover {
background-position:0% -42px;
}
#nav a:hover span {
background-position:100% -42px;
}


Listing 2. HTML code for tab-based navigation


Copy code
The code is as follows:

<div id="nav">
<ul>
<li><a href="#" title="Link 1"><span>Link 1</span></a></li>
<li><a href="#" title="Link 2"><span>Link 2</span></a></li>
<li><a href="#" title="Link 3"><span>Link 3</span></a></li>
<li><a href="#" title="Longer Link Text"><span>Longer Link Text</span></a></li>
<li><a href="#" title="Link 5"><span>Link 5</span></a></li>
</ul>
</div>

Check cookie usage
Cookies may be very small files, but the browser still needs to download them. Larger cookies take longer to download, which increases the time it takes your browser to load a web page. Because of this, it is important to keep cookies as small as possible to minimize the impact on browser response time.

Additionally, setting an earlier expiration date, or no expiration date at all, can improve response time. To set the expiration date of a cookie in PHP, use the following code:


Copy code
The code is as follows:

<?php
$expire = 2592000 + time();
// Add 30 day's to the current time
setcookie(userid, "123rrw3", $expire);
?>

This code sets the cookie userid and sets the expiration date to 30 days from the current date.

Do not include unnecessary JavaScript code, externalize it as much as possible. Similar to cookies, JavaScript files take time to download, which will inevitably slow down the loading speed of the entire page. So, use JavaScript wisely (only when really necessary) and optimize your scripts for size and speed.

Another way to shorten JavaScript download time is to use external files instead of including the scripts inline. This approach also works for CSS, because browsers cache externalized text, whereas CSS or JavaScript coded inline (in the HTML page itself) is loaded along with the HTML every time. To externalize CSS and JavaScript code by referencing them in HTML, you can use code of the following form:


Copy code
The code is as follows:

<link href="/stylesheets/myStyle.css" media="all" rel="Stylesheet" type="text/css" />
<script src="/javascripts/myJavascript.js" type="text/javascript"></script>

Avoid using tables whenever possible
Tables were used as the primary building blocks of web pages, but as page layout elements, using tables is now considered poor practice. Sometimes, you have to use tables (and they are considered excellent practice for displaying tabular data). If so, explicitly specify the width and height of your table cells, rows, and columns; otherwise, the browser has to do a lot of work to calculate how to display them, which can slow down page loading:


Copy code
The code is as follows:

<td width="50px" height="10px">...</td>

Remove any unnecessary elements

This is probably the most obvious tip of all, but it's also the easiest to forget. I mentioned before that “less is more”: not only does this mean that it really appeals to a wider audience, it also means there is less stuff to download and process. If you really need to fit a lot of content on a web page, consider breaking the page into 2, 3, or more separate pages.

Some tips for optimizing web pages

There are many ways to optimize your web pages, including compressing JavaScript files, using Hypertext Transfer Protocol (HTTP) compression, and setting image sizes.

Compress and minify JavaScript files

JavaScript files can be very large, which means that in some cases they can take longer to download than all other components combined. One way to solve this problem is to compress your JavaScript files. You can use GNU zip (gzip) to accomplish this task because many browsers support this compression algorithm.

Another alternative is to minify the file. This method removes all unnecessary characters from the code, such as tabs, new lines, and spaces. It removes comments and whitespace in your code, further reducing file size. Both external and internal stylesheets can be minified. The two most popular minification tools are JSMin and YUI Compressor (see Resources).

Use HTTP compression, and always use lowercase div and class names You can use HTTP compression to reduce the amount of communication between the server and the browser. HTTP compression can be configured in Apache (.htaccess file), or it can be included in the page (for PHP, there is an HTTP_ACCEPT_ENCODING option). But please note: not all browsers support compression. Even for browsers that support compression, compression and decompression will increase the load on the processor. To enable blanket compression (that is, compress all text and HTML) in Apache, use the following command:


Copy code
The code is as follows:

AddOutputFilterByType DEFLATE text/html text/plain text/xml

Also, think about what you want to compress. Images, music, and videos are already compressed when they are created, so you can limit compression to HTML, CSS, and JavaScript files.

Another trick to reduce compression effort is to use lowercase <div> elements and class names. Due to case sensitivity and the use of lossless compression, <header> is different from <Header> and they are compressed into two different tags. In the following example, the Important class is different from the important class for the compressor, which means that they represent different objects for the compressor and are therefore compressed into two different texts.


Copy code
The code is as follows:

<div>read this!</div>
<div>This will cost you some valuable load time</div>

Paying attention to details doesn’t seem to matter. But when you optimize your files, all the subtle details should be taken into account.

Set image size
As with table cells, rows, and columns, when you don't explicitly set the image size, the browser needs to perform calculations to display the image, which slows down processing. Additionally, in some cases the image size may not be calculated correctly and the image may appear distorted.

Using CSS image maps for decorative purposes

Using image maps instead of multiple images is another way to improve load times, because downloading individual parts of an image simultaneously speeds up the download of the entire page. Alternatively, you can use something called CSS sprites (see Related topics). CSS sprites can help reduce the number of HTTP requests. An image can contain all the graphic elements needed to decorate or layout a page. You use CSS to select (by calling certain positions and dimensions) the mapping to use for a particular element.

Delay script loading as much as possible

I mentioned earlier that removing completely unnecessary JavaScript code can speed up loading and processing times. But what if your code is already very minimal and you must include JavaScript code in your page?

In this case, one potential way to increase page download speed is to place the script at the bottom of the page to make it load faster. Normally, browsers can download no more than two objects in parallel (from the same domain), and if one object is a JavaScript code, the download of other page components will be paused until the script is downloaded. If you place your JavaScript code at the bottom of your page, it will (in most cases) be downloaded last, after all other components have downloaded.

Use the Firebug extension to track slow loading files, I bet your JavaScript files are the slowest files to download. Minifying your JavaScript files will help, but it may not be enough. You can defer the loading of JavaScript using the following code snippet:


Copy code
The code is as follows:

var delay = 5;
setTimeout("heavy();", delay * 1000);


This code delays the call to the heavy() method by 5 seconds. You can use this code in conjunction with the following technique to defer the loading of an entire JavaScript file.

Loading JavaScript files on demand
To load JavaScript on demand, use the import() function, as shown in Listing 3.

Listing 3. The import() function



Copy code
The code is as follows:

function $import(src){
var scriptElem = document.createElement('script');
scriptElem.setAttribute('src',src);
scriptElem.setAttribute('type','text/javascript');
document.getElementsByTagName('head')[0].appendChild(scriptElem);
}</p> <p>// import with a random query parameter to avoid caching
function $importNoCache(src){
var ms = new Date().getTime().toString();
var seed = "?" + ms;
$import(src + seed);
}

Verify Function Loading It is also possible to verify if a function is loaded, and if not, load the JavaScript file. To do this, use the code in Listing 4.

Listing 4. Verifying that the function is loaded


Copy code
The code is as follows:

if (myfunction){
// The function has been loaded
}
else{ // Function has not been loaded yet, so load the javascript.
$import('http://www.yourfastsite.com/myfile.js');
}

Note: You can use the defer attribute, but not all browsers (including Firefox) support it.

Optimizing CSS files
CSS files don’t have to be huge if they are properly optimized and maintained. For example, a CSS file with many separate classes can affect download speed. As with your JavaScript files, you need to optimize your CSS files so that they include everything you need while remaining a reasonable size. Additionally, use external files instead of inline definitions to accommodate browser caching mechanisms.

Using a Content Distribution Network
A content-distribution network (CDN) is another great way to reduce download times. When you place static images on many servers on the Internet, users can download the images from the server closest to them. Additionally, most CDNs run on fast servers, so no matter how fast the server is loading, it will respond faster than a small, overloaded server.

Use multiple domains for assets to increase connectivity
Another advantage of CDNs is that they are separate domains. Because your browser limits the number of concurrent connections to a single domain, it's easy to hog all the threads whenever a page is loaded. Therefore, connections to other assets are delayed. However, your browser is able to open new threads or connections to other domains so that any assets loaded from another domain can be loaded simultaneously with all other assets.

Use Google Gears when it makes sense

Using Google Gears (see Related topics) is another good way to prevent users from having to download the same content over and over again. Gears allows users to access Web applications offline, but also allows page elements to be persisted on the user's computer. Therefore, content that is frequently loaded but not updated can be stored in the Gears database, which is a SQLite3 relational database management system. All next requests for the same content can be loaded directly from the database (rather than the server).

After installing Gears, get the gears_init.js file so that you can easily access the Gears factory and application programming interface (API), save it as gears_init.js , and reference it in your code as follows:


Copy code
The code is as follows:

<script type="text/javascript" src="gears_init.js"></script>

To determine whether Gears is installed, use the code in Listing 5.

Listing 5. Determining whether Gears is installed


Copy code
The code is as follows:

<script>
if (!window.google || !google.gears) {
location.href = "http://gears.google.com/?action=install&message=<welcome message>"
+ "&return=<return url>";
}
</script>

If Gears is not installed, the code will provide you with a URL to download Gears.

Once all elements have been validated and Gears has been installed, you can test Gears' extremely useful database functionality using the JavaScript code in Listing 6.

Listing 6. Testing database functionality


Copy code
The code is as follows:

<script type="text/javascript">
var db = google.gears.factory.create('beta.db');
db.open('database-test');
db.execute('create table if not exists Test' +
' (Phrase text, Timestamp int)');
db.execute('insert into Test values ​​(?, ?)', ['Monkey!', new Date().getTime()]);
var rs = db.execute('select * from Test order by Timestamp desc');</p> <p>while (rs.isValidRow()) {
alert(rs.field(0) + '@' + rs.field(1));
rs.next();
}
rs.close();
</script>

This code creates a local database db on your computer or server. If the table Test does not exist, create one and insert the test data (Monkey! and time). The code fetches data from the database and displays it in the browser as an alert.

Imagine the possible outcomes!

Use PNG format images
The Graphic Interchange Format (GIF) and Joint Photographic Experts Group (JPEG) image formats are both obsolete: Portable Network Graphic (PNG) is the format of the future. Of course, you can say that GIF and JPEG are dead, or that PNG has no flaws, but everything has its pros and cons, and PNG offers excellent quality at an optimal file size. Therefore, if given a choice, you should use PNG images whenever possible.

Keep Ajax calls short and precise
When the technologies collectively known as Asynchronous JavaScript + XML (Ajax) emerged two years ago, they provided a revolutionary approach to handling page requests and responses. However, dial-up users may never get the chance to experience its true benefits because, in many cases, Ajax requires a lot of communication between the browser and the server. Therefore, if you can keep your Ajax calls short and precise, you can prevent users from spending endless time waiting for elements to refresh or respond.

Make a large Ajax call and process the client data locally

If making short Ajax calls is not an option, or if those calls don't provide the expected results, consider an alternative approach: making one large Ajax call to get everything you need, and then having the client process the data locally. This way the client only has to wait once (to get the incoming data), but after that (when there is no need for browser to server communication) processing will be much faster. Of course, there are far more Ajax optimization techniques than this tutorial can cover. If you want to learn more about Ajax, see Resources.

Testing your code in a sandbox
There is another common trick that is often forgotten. Although sane web developers usually test their applications before launching them, sometimes testing causes them to take maintenance tasks less seriously, or new features are added too quickly and without adequate consideration or testing. As a result, the remaining scripts slow down the application.

If you add a new feature, you can first test it in a sandbox (completely isolated from the rest of the application) to see how it behaves as a single function. This way, you can iterate and analyze performance and response times without having to worry about the rest of your Web application. Then, when the new feature behaves as expected, it can be introduced into the rest of the application and additional tests can be run to ensure that the feature itself behaves as expected.

Analyze site code

Self-reflection is a good idea in many scenarios. Fortunately, during the development process, we can use tools to help us reflect and practice as objectively as possible. The value of a tool like JSLint (see Resources) is immeasurable, even though its site states that it "can be frustrating" because it exposes all potential code flaws to you, which not only makes debugging more difficult but can also result in longer response times.

Use JSLint to check your JavaScript code for errors or poor coding practices

You don't need to be a perfectionist to write flawless JavaScript code. However, many developers do not take code analysis seriously and often skip this step in the development process. Unfortunately, mistakes and poor coding practices are not only unprofessional, but can also slow down your application. When the browser is busy dealing with bugs and poor coding practices, not only does it take more time to load, it can also lead to hard-to-debug errors.

Therefore, if you want to get good code, consider using a code analysis tool. There are many different tools available, but the one that works best for the JavaScript language is JavaScript Lint, also known as JSLint (see Resources). You can also use Firebug, but JSLint is more formal and is included with YSlow.

Check for orphaned files and missing images
It is a wise move to check for orphaned files and lost images. Most web developers check for bad file references, but it's worth mentioning here. Missing files can easily cause all sorts of problems as they can result in error messages like “The image/page cannot be displayed”. But they have a bigger flaw when it comes to web page speed optimization: When the browser looks for missing or orphaned files, it consumes resources, which inevitably leads to slower page processing. Therefore, check for orphaned or missing files, including misspelled file names.

YSlow extension
The YSlow Firebug extension makes subjective web page analysis increasingly obsolete. Using definitive rules for high-performance websites drafted by Yahoo!, YSlow analyzes web pages and tells you why they're slow.

Analyze web pages with YSlow
YSlow is a relatively small but very useful Firefox extension. When you launch YSlow, the extension opens in the lower portion of the browser, as shown in Figure 4.

Figure 4. The YSlow extension in Firefox





Figure 4 shows the Performance view, where you can see how YSlow rates your page's performance, and also see problems that the extension detects. Clicking a link in the list opens a page that explains the error. If there are page components that can be improved, YSlow will suggest improvements.

In the Inspect view, shown in Figure 5, you can dissect the page by analyzing the elements one by one. One of the most useful features of the Inspect view is that it automatically refreshes as you move the mouse pointer over the page, so you don't have to scroll through the code to find the line you need to inspect.

Figure 5. YSlow Inspect view in Firefox




As you can guess from its name, the Stats view (shown in Figure 6) displays statistical data related to the current page. This data includes empty and primary caches and cookies.

Figure 6. YSlow Stats view in Firefox




The Components view (shown in Figure 7) lists the components on the current page. Data displayed about each component includes file type and path, page expiration time, and HTTP response headers. Click a component to open it for viewing. Click a column heading to sort the table in ascending or descending order.

Figure 7. YSlow Components view




YSlow is a small, useful extension that can do a lot for you when it comes to making your pages load faster. If you haven’t used it before, you should now.

Conclusion
Optimizing the loading speed of your web pages doesn't have to be complicated. In fact, you can often achieve speed optimizations fairly easily. If you follow the tips in this article, along with Web development best practices, you can make your pages load faster without taking any additional steps.

It’s easy to collect a lot of on-page optimization tips in one place, and I hope this resource has been valuable. But if you thought that these were the only speed optimization tips listed here, you'd be surprised to find that there are far more. But even if you just follow these 20-plus tips, your pages will load faster and your users will be happier -- whether they're surfing the Internet via dial-up or dedicated broadband.

Article from: developerworks

<<:  How to use the href attribute of the HTML a tag to specify relative and absolute paths

>>:  Detailed explanation of JavaScript implementation of hash table

Recommend

Use tomcat to set shared lib to share the same jar

As more and more projects are deployed, more and ...

Solution to mysql failure to start due to insufficient disk space in ubuntu

Preface Recently, I added two fields to a table i...

Fixed a bug caused by scrollbar occupying space

background This bug was caused by滾動條占據空間. I check...

Detailed explanation of jQuery's core functions and event handling

Table of contents event Page Loading Event Delega...

How to build php-nginx-alpine image from scratch in Docker

Although I have run some projects in Docker envir...

Ubuntu Server Installation Tutorial in Vmware

This article shares with you the Ubuntu server ve...

MySQL 8.0.22 installation and configuration graphic tutorial

MySQL8.0.22 installation and configuration (super...

React implements dynamic pop-up window component

When we write some UI components, if we don't...

JS implementation of carousel carousel case

This article example shares the specific code of ...

Record the whole process of MySQL master-slave configuration based on Linux

mysql master-slave configuration 1. Preparation H...

How to improve MySQL Limit query performance

In MySQL database operations, we always hope to a...

How to install and uninstall open-vswitch in Linux

1. Compile and install ovs from source code: Inst...

Centos8.3, docker deployment springboot project actual case analysis

introduction Currently, k8s is very popular, and ...

Detailed explanation of how to use the Vue license plate search component

A simple license plate input component (vue) for ...