Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Save Automatically?

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!DOCTYPE html>
<html lang="en">
  <head>
  <title>Second example of an event listener</title>
    <meta charset="utf-8">
</head>
<body>
  <button id="myButton">Click me!</button>
  <p></p>
  <script>
    // instead of using the addEventListener method directly, we used it on a DOM object (the button)
    //  Get a reference of the HTML element that can fire the events you want to detect. This is done
    // using the DOM API that we'll   cover in detail later this week. In this example we used one of 
    // the most common/useful methods: var b = document.querySelector("#myButton");
    var b = document.querySelector("#myButton");
    
    // Call the addEventListener method on this object. In the example: b.addEventListener('click', callback)
    // Every DOM object has an addEventListener method. Once you get a reference of  any HMTL element from 
    // JavaScript, you can start listening to events on it.
    b.addEventListener('click', function(evt) {
      alert("Button clicked");
    });
    
  </script> 
</body>
</html>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console