JSFiddle - React, Tailwind, and code Playground

by Ali Khaled

JavaScript

var iframe = $('<iframe />');
iframe.prop('src', 'https://maps.google.com/maps?q=2211 E &z=10&output=embed');
iframe.appendTo($('body'));
		
		
// When the iframe loads:
iframe.load(function() {
	alert(1);
});