| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|---|
| 2 | <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en"> |
|---|
| 3 | <head> |
|---|
| 4 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|---|
| 5 | <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> |
|---|
| 6 | <script type="text/javascript"> |
|---|
| 7 | $(function() { |
|---|
| 8 | $("abbr").html("HELLO WORLD"); |
|---|
| 9 | }); |
|---|
| 10 | </script> |
|---|
| 11 | </head> |
|---|
| 12 | <body> |
|---|
| 13 | <p>This is a test, <abbr>OK?</abbr></p> |
|---|
| 14 | </body> |
|---|
| 15 | </html> |
|---|