| 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 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|---|
| 6 | <title>jQuery Test</title> |
|---|
| 7 | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.js"></script> |
|---|
| 8 | <script type="text/javascript"> |
|---|
| 9 | //<![CDATA[ |
|---|
| 10 | |
|---|
| 11 | $(function() { |
|---|
| 12 | var html = [ |
|---|
| 13 | '<div id="parent_1">', |
|---|
| 14 | '<div id="child_1_of_child_1_of_parent_1"/>', |
|---|
| 15 | '</div>', |
|---|
| 16 | '<div id="parent_2"/>', |
|---|
| 17 | ].join(''); |
|---|
| 18 | |
|---|
| 19 | $('<div/>').appendTo('body').html(html); |
|---|
| 20 | }); |
|---|
| 21 | |
|---|
| 22 | //]]> |
|---|
| 23 | </script> |
|---|
| 24 | </head> |
|---|
| 25 | <body> |
|---|
| 26 | </body> |
|---|
| 27 | </html> |
|---|