JSFiddle - React, Tailwind, and code Playground

by Michael Prosser

JavaScript

// in the parent page

function toggleOverlay(){

	$('body').toggleClass('active');

}




// in the iframe page in click handler

parent.toggleOverlay();