Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Example</title>
    <style>
      button.trigger::before {
        /*
        position: absolute;
        bottom: 100%;
        left: -100%;
        padding: 0.8em;
        width: 300%;
        color: #fff;
        */
        content: attr(data-info);
        /*
        font-size: 0.35em;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        */
      }
    </style>
  </head>
  <body>
    <button class="trigger" id="trigger" data-info='Scroll down for more information'><span>Trigger</span></button>
    <script>
      (function() {
        "use strict";
        // 'Getting' data-attributes using getAttribute
        var trigger = document.getElementById('trigger');
        var touchText = trigger.getAttribute('data-info'); 
        // 'Setting' data-attributes using setAttribute
        trigger.setAttribute('data-info','Touch the arrow'); 
      })();
    </script>
  </body>
</html>
Output

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

Dismiss x
public
Bin info
tjcrowderpro
0viewers