JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html lang="en">
    <head>

        <script type="text/javascript">
            function go(transform_function) {
                alert('go');

                transform_function('test');

            }

            function replace(output) {
                alert('rep');

            }

        </script>

    </head>

    <body>

        <form>


            <button type="button" onclick="go(replace)">Replace</button> 

            <div id="output_container" class="bottom-row2">
                <div class="col-lg-12">
                    Output:
                    <textarea id="out" rows="5" cols="1"></textarea>
                </div>
            </div>

        </form>

    </body>
</html>