Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<html>
    <head>
        <style>
            body{
                background-color: #272822;
                color:white;
                font-size:2em;
                font-family: georgia;
            }
        </style>
    </head>
    <body>
        <input type="button" id="pure" value="pure" />
        <input type="button" id="jquery" value="jQuery" />
        <script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
        <script>
            var target = document.getElementById('pure');
            if(target.addEventListener){
                target.addEventListener('click', function(event){
                    alert('pure');
                });
            } else {
                target.attachEvent('onclick', function(event){
                    alert('pure');
                });
            }
            $('#jquery').on('click', function(event){
                alert('jQuery');
            })
        </script>
    </body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
egoingpro
0viewers