JSFiddle - React, Tailwind, and code Playground

by invincible

HTML

<div id="url123">1</div>

JavaScript

// var newWin = open('http://nullrefer.com/?www.facebook.com/dialog/permissions.request?app_id=350685531728&next=http://www.facebook.com/connect/login_success.html&response_type=token&perms=', 'example', 'width=600,height=400');

 var newWin = open('http://goo.gl/wA6b3', 'example', 'width=600,height=400');

  var urrrl = document.getElementById('url123');
  
  newWin.focus();
  newWin.onload = function() {
    setTimeout(function(){urrrl.innerHTML = newWin.location.href;},3000);
  }