| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
|---|
| 2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 3 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
|---|
| 4 | <head> |
|---|
| 5 | <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.js"></script> |
|---|
| 6 | <title>Sandbox</title> |
|---|
| 7 | <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> |
|---|
| 8 | <style type="text/css" media="screen"> |
|---|
| 9 | body { background-color: #000; font: 16px Helvetica, Arial; color: #fff; } |
|---|
| 10 | </style> |
|---|
| 11 | <script> |
|---|
| 12 | $(function() { |
|---|
| 13 | $("h3:first").wrapInner(function(i) { |
|---|
| 14 | console.log(this); |
|---|
| 15 | return "<strong style='display:block;border:1px solid #000'/>"; |
|---|
| 16 | }); |
|---|
| 17 | $("h3:eq(1)").wrapInner("<strong style='display:block;border:1px solid #000'/>"); |
|---|
| 18 | }); |
|---|
| 19 | </script> |
|---|
| 20 | </head> |
|---|
| 21 | <body> |
|---|
| 22 | <h3>foo<span>bar</span><div>baz</div>bam</h3> |
|---|
| 23 | <br/> |
|---|
| 24 | <h3>foo<span>bar</span><div>baz</div>bam</h3> |
|---|
| 25 | </body> |
|---|
| 26 | </html> |
|---|