Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 387 Bytes

README.md

File metadata and controls

25 lines (15 loc) · 387 Bytes

chikuwa.js

chikuwa.js is light-weight javascript library for iOS/Android web browser.

Usage

simply import chikuwa.js

Examples

Apply text element

$(‘body’).text(‘hello world!’);

Generate html content

$(‘body’).tag(‘span’).text(‘Sample Text’).gat();

Apply events

$(‘ul li.cls’).tap(function() { $(this).text(‘tapped!’); });

etc..