JSFiddle - React, Tailwind, and code Playground

by Superman

HTML

<!doctype html> 
<html> 
<head> 
<title>The Notes</title>
<!--<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.css" />-->
<link rel="stylesheet"  href="http://jquerymobile.com/test/themes/default" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
<!--<script type="text/javascript" src="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.js"></script>-->
<!-- latest build -->
<script type="text/javascript" src="http://jquerymobile.com/test/js/"></script>
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
</head>
<body>
<div id="tags" data-role="page">
<div data-role="header"><h1>The Notes</h1></div>
<div data-role="content">
<ul id="taglist" data-role="listview" data-filter="true"></ul>
</div>
</div>
<div id="notes" data-role="page">
<div data-role="header"><h1>The Notes</h1></div>
<!--<ul id="notelist" data-role="listview"></ul>-->
<div id="notelist" data-role="content">
<button type="submit" name="tag" value="sometag"><span>Delete sometag</span></button>
</div>
</div>
<script type="text/javascript">
var tags = [
    {'count': 8, 'group': 'A', 'tags': ['abortion', 'address', 'anger', 'anime', 'appengine', 'art', 'article', 'asking']},
    {'count': 4, 'group': 'B', 'tags': ['beauty', 'book', 'boundary', 'business']},
    {'count': 14, 'group': 'C', 'tags': ['calm', 'chance', 'change', 'chaos', 'chinese', 'choice', 'cold', 'communication', 'complexity', 'conf idence', 'control', 'cooking', 'courage', 'creation']},
    {'count': 8, 'group': 'D', 'tags': ['database', 'death', 'decision', 'design', 'desire', 'devil', 'dream', 'duty']},
    {'count': 7, 'group': 'E', 'tags': ['education', 'efficiency', 'enemy', 'esteem', 'existence', 'experience', 'experiment']},
    {'count': 7, 'group': 'F', 'tags': ['family', 'feeling', 'flattery', 'foolishness', 'freedom', 'friend', 'funny']},
    {'count': 3, 'group': 'G',...

JavaScript

//jquery mobile