Wrap text
Header
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Website</title>
<link rel="shortcut icon" href="/favicon.ico" />
<!--[if IE]>
<link rel="stylesheet" href="/css/banner.css" type="text/css" />
<![endif]-->
<!--[if IE 7]>
<link href="/css/site_styleIE7.css" rel="stylesheet" type="text/css" />
<![endif]-->
<link rel="stylesheet" href="/css/site_style.css" type="text/css" />
<link rel="stylesheet" href="/css/banner.css" type="text/css" />
<link href="/css/site_styleIE7.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="/css/print.css" media="print" type="text/css" />
<script src="/js/prototype.js" type="text/javascript"></script>
<script src="/js/scriptaculous.js" type="text/javascript"></script>
<script src="/js/lowpro.js" type="text/javascript"></script>
<script src="/js/application.js" type="text/javascript"></script>
<script type='text/javascript'
src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>
</head>
|
Method in Firebug Lite console (internet explorer)
1
2
|
>>> $$('a').first().setStyle( { "border" : "solid 1px red" })
Error: Object doesn't support this property or method
|
Method in Firebug Lite console (firefox)
1
2
|
>>> $$('a').first().setStyle( { "border" : "solid 1px red" })
<a href="/index.php" style="border: 1px solid red;">
|