| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|---|
| 2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|---|
| 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|---|
| 4 | <head>
|
|---|
| 5 | <title>Height Test</title>
|
|---|
| 6 |
|
|---|
| 7 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|---|
| 8 | <meta http-equiv="Content-Language" content="en-us" />
|
|---|
| 9 |
|
|---|
| 10 | <script type="text/javascript" src="http://code.jquery.com/nightlies/jquery-nightly.js"></script>
|
|---|
| 11 |
|
|---|
| 12 | <script type="text/javascript">
|
|---|
| 13 | $(document).ready(function(){
|
|---|
| 14 | alert($('#foo').height());
|
|---|
| 15 | });
|
|---|
| 16 | </script>
|
|---|
| 17 | </head>
|
|---|
| 18 |
|
|---|
| 19 | <body>
|
|---|
| 20 | <div>
|
|---|
| 21 | <div id="foo"></div>
|
|---|
| 22 | content outside
|
|---|
| 23 | </div>
|
|---|
| 24 | </body>
|
|---|
| 25 |
|
|---|
| 26 | </html> |
|---|