JSFiddle - React, Tailwind, and code Playground

by David Joseph Guzsik

HTML

<object data="http://www.w3schools.com/tags/helloworld.swf" type="application/x-shockwave-flash" width="400" height="400" style="display:none;" id="SWF">
    <param name="movie" value="http://www.w3schools.com/tags/helloworld.swf">

    <!-- If flash is not installed -->
    <p>You need Adobe Flash Player to view this content</p>
</object>

<input type="button" value="Show .swf" id="showSWFButton">

JavaScript

$('#showSWFButton').click(function(){
    setTimeout(showSWF,10000) //10 000 milliseconds = 10 seconds
})

function showSWF(){
    $('#SWF').show();
}