JSFiddle - React, Tailwind, and code Playground
by sonali_moholkar
HTML
<html>
<head>
<center> <h1> <b> Sona</b></h1> </center>
<title>My First script</title>
<style type="text/css">
#TextArea1
{
height: 183px;
width: 195px;
}
#Select2
{
width: 88px;
}
</style>
</head>
<body>
<button type="button" onclick="displayResult()">Insert new row</button>
<input type='button' name='sonali_saver' value='Save' onclick="return sonali_saver_onclick()" />
<textarea id="TextArea1" name="S1" rows="20" onpropertychange="return TextArea1_onpropertychange()"></textarea>
<select id="Select2" name="D2" onselectstart="return Select2_onselectstart()" onchange="return Select2_onchange()">
<option></option>
</select><br />
<select id="Select1" name="D1">
<option>Healthy</option>
<option>Unhealthy</option>
<option>Emergency</option>
</select>
<br />
<br />
<table id=hola border="2">
<tr>
<thead>
<th><b> Service </b> </th>
<th><b> Status </b></th>
<th><b> Last Modified </b></th>
</thead>
</tr>
</table>
<script language="JavaScript" type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
var Sonali = {};
$(document).ready(function () {
Sonali.setup();
});
Sonali.setup = function () {
Sonali.setup_buttons();
...