Response title
This is preview!
- <!DOCTYPE html>
- <html>
- <head>
- <style>
- p { background:#dad;
- font-weight:bold;
- font-size:16px; }
- </style>
- <script src="http://code.jquery.com/jquery-latest.js"></script>
- </head>
- <body>
- <button>Toggle 'em</button>
- <p>Hiya</p>
- <p>Such interesting text, eh?</p>
- <script>
- $("button").click(function () {
- $("p").toggle("slow");
- });
- </script>
- </body>
- </html>
i want to change the color of the line from pink to alse color, how can i do this?and i want to change the color if the words to green, how can i do this?
© 2013 jQuery Foundation
Sponsored by and others.