D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
Miyaton
Full window
Github gist
HTML5WebStorageのすゝめ
<html lang="ja-JP"> <head> <meta charset="UTF-8"> <title>HTML5 WebStrage API</title> </head> <body> <div class="container"> <section> <div class="page-header"> <h1>LocalStorageTest</h1> </div> <div class="row"> <div class="span4"> <h2>操作</h2> <div class="well well-small form-inline"> <input type="text" id="storage_key" class="input-small" placeholder="Key"> <input type="text" id="storage_val" class="input-small" placeholder="value"> <button type="button" class="btn btn-primary" onclick="setItem($('#storage_key').val(), $('#storage_val').val());">Add</button> <p></p> <span class="help-block">・同一のKeyがなければ、追加</span> <span class="help-block">・同一のKeyがあれば、上書き</span> </div> </div> <!--/span--> <div class="span8"> <h2>Storage Data</h2> <small> <button type="button" class="btn btn-mini" onclick="setUp();" />初期値をセット</button> <button type="button" class="btn btn-mini" onclick="clearItem();" />クリア</button> </small> <table class="table table-condensed" id="table_storage"> <thead> <tr> <th style="width: 2em;">#</th> <th style="min-width: 10em;">Key</th> <th style="min-width: 24em;">Value</th> <th style="width: 10em;">Action</th> </tr> </thead> <tbody> </tbody> </table> </div> <!--/span--> </div> <!--/row--> </section> </div> </body> </html>