Quantcast
Viewing latest article 14
Browse Latest Browse All 16

How to use firebug on internet explorer including ie6

Here is snippet that’ll help you using firebug on the famous browser (internet explorer 6).

- Copy the code on your <head> </ head>

<script type='text/javascript' src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>

- Adding a condition for using firebug on any internet explorer version .

<!--[if IE]><![endif]-->

Final code :

<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml" lang="fr">
<head>
<title>How to use firebug on internet explorer including ie6</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!--[if IE]>
<script type='text/javascript' src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>
<![endif]-->
</head>

Viewing latest article 14
Browse Latest Browse All 16

Trending Articles