JSFiddle - React, Tailwind, and code Playground

by lshettyl

HTML

<h1>Lets talk with SpongBob!</h1>
<span>Say "hello":</span>
<form name="frm"><input name="question" type="text"><input  id="submit" type="submit" value="Submit"></form>
<div id="igool"><span id="talk"></span></div>
<div id="Triangle"></div>
<img src="http://static.tumblr.com/f1bbfdf0fd794b1cf8d243d65644be01/i0ldeup/bURmj2ccf/tumblr_static_spongebob.jpg"/>

JavaScript

document.forms['frm'].onsubmit = function() {
    if (document.forms['frm'].question.value == "hello") {
        document.getElementById("talk").innerHTML="Hello you to!";
    }
    else {
        document.getElementById("talk").innerHTML="WhatEver...";
    }
    return false;
}