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

Auto Save

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

              
                
<!-- Basic Paysafe.js example -->
<html>
  <head>
  </head>
  <body>

    <!-- Create divs for the payment fields -->
    <div id = "cardNumber" class="inputField" ></div>
    <p></p>
    <div id = "expiryDate" class="inputField"></div>
    <p></p>
    <div id = "cvv" class="inputField"></div>
    <p></p>

    <!-- Add a payment button -->
    <button id = "payNow" type = "button"> Pay now </button>
    <!-- Paragraph to contain returned token -->
    <p class = "token" id = "token"></p>
  </body>
</html>
              
            
!

CSS

              
                .inputField {
        border: 1px solid #E5E9EC;
        height: 40px;
        padding - left: 10px;
      }
.token {
  color: blue;
}
              
            
!

JS

              
                          // Base64 encoded version the Single-use Token API key.
      // Create the key below by concatenating the API username and password
      // separated by a colon and Base64-encoding the result
	  
      // var apiKey = "Your Base64-encoded Single-use token Api Key";
      var apiKey = "T1QtMTE3MDQwOkItcWEyLTAtNTk1NjRlNWMtMC0zMDJjMDIxNDdmMDU4M2I2OGY4ZWQyNjkxNDIxMDczMzZiYWIyMTZmOWMzZGJiNTEwMjE0MTgwYzY1NGQ3OTgzZmI2NTliYzEzZWY4YWMyZmQ1MTliMjVhOTQxZQ==";
			
      var initialcolor = "#E5E9EC";
	  
	  var options = {

        // select the Paysafe test / sandbox environment
        environment: "TEST",

        // set the CSS selectors to identify the payment field divs above
        // set the placeholder text to display in these fields
        fields: {
          cardNumber: {
            selector: "#cardNumber",
            placeholder: "Card number"
          },
          expiryDate: {
            selector: "#expiryDate",
            placeholder: "Expiry date"
          },
          cvv: {
            selector: "#cvv",
            placeholder: "CVV"
          }
        },

	//set the CSS styles to apply to the payment fields		
	style: {
	  input: {
            "font-family": "robotoregular,Helvetica,Arial,sans-serif",
            "font-weight": "normal",
            "font-size": "30px",
            "color": "#ff0000"
          }
	}	
      };

      // initalize the hosted iframes using the SDK setup function
      paysafe.fields.setup(apiKey, options, function(instance, error) {

        // Add event handling. Responds to the user selecting / deselecting a field by changing the border color
        instance.fields("cvv cardNumber expiryDate").on("Focus Blur", function(instance, event) {
	  this.style.borderColor = event.type === "Focus" ? "#00ff00" : initialcolor;
        })

        // When the customer clicks Pay Now,
        // call the SDK tokenize function to create
        // a single-use payment token corresponding to the card details entered
        document.getElementById("payNow").addEventListener("click", function(event) {
          instance.tokenize(function(instance, error, result) {
            if (error) {
              // display the tokenization error in dialog window
              alert(JSON.stringify(error));
            } else {
              // write the Payment token value to the bottom of the page
              $( "#token" ).text( "Token: " + result.token );
              // write the Payment token value to the browser console
              console.log(result.token);
            }
          });
        }, false);
      });

              
            
!
999px

Console