Quantcast
Channel: Depot webdesigner - Tutorials and more resources for webdesigner » xhtml
Viewing all articles
Browse latest Browse all 25

How to use firebug on internet explorer including ie6

$
0
0

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 all articles
Browse latest Browse all 25

Trending Articles