| 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
|---|
| 2 | <html> |
|---|
| 3 | <head> |
|---|
| 4 | <title>Tester</title> |
|---|
| 5 | <style type="text/css"> |
|---|
| 6 | #container { background:yellow; width:200px; } |
|---|
| 7 | </style> |
|---|
| 8 | <script type="text/javascript" src="../jquery.js"></script> |
|---|
| 9 | <script type="text/javascript"> |
|---|
| 10 | $(function () { |
|---|
| 11 | $("button:first").click(function () { |
|---|
| 12 | $(".class2").css("background", "yellow"); |
|---|
| 13 | var s = "class2 turned yellow"; |
|---|
| 14 | $("#adiv").text(s); |
|---|
| 15 | }); |
|---|
| 16 | }); |
|---|
| 17 | </script> |
|---|
| 18 | </head> |
|---|
| 19 | <body> |
|---|
| 20 | <button>Do It</button> |
|---|
| 21 | <div class="class1 class2 class3">1235</div> |
|---|
| 22 | <div id="adiv"></div> |
|---|
| 23 | </body> |
|---|
| 24 | </html> |
|---|