UNPKG

doevisualizations

Version:

Data Visualization Library based on RequireJS and D3.js (v4+)

33 lines 872 B
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>select</title> <style type='text/css'> body {font-family: verdana} .error {border: solid 1px red;} .error_text { color: red; font-size: 10px;} td {padding: 3px;} .selected { background-color: blue; } #tap { height: 500px; width: 500px; background-color: blue; display: block; } </style> </head> <body> <a href='javascript://' id='tap'>I'd Tap That</a> <script type='text/javascript' src='../../node_modules/steal/steal.js' main='@empty'></script> <script type='text/javascript'> steal("jquerypp/event/tap", function(){ $('#tap').bind('tap', function(){ console.log('tap'); }); }); </script> </body> </html>