JSFiddle - React, Tailwind, and code Playground

by orrinward

JavaScript

function blurShow(thingtoshow){
          testingthing = "#" + thingtoshow;
          $("#"+ testingthing).parents('.blur').fadeIn(slow);
          alert(testingthing);
        }
        $('#signup_button').click(function(event){
          blurShow("submitform");
        });