Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>on demo</title>
- <style>
- p {
- background: yellow;
- font-weight: bold;
- cursor: pointer;
- padding: 5px;
- }
- p.over {
- background: #ccc;
- }
- span {
- color: red;
- }
- </style>
- <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
- </head>
- <body>
- <p>Click me!</p>
- <span></span>
- <script>
- var count = 0;
- $( "body" ).on( "click", "p", function() {
- $( this ).after( "<p>Another paragraph! " + (++count) + "</p>" );
- });
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement