JSFiddle - React, Tailwind, and code Playground

by sanford

JavaScript

var frameEl = window.frameElement;
// If we are inside a frame, then change its URL to 'http://mozilla.org/'
if (frameEl) {
  frameEl.src = 'http://mozilla.org/';
}