Skip to content
/ b-dom Public

Get basic html manipulation features, just like jQuery - basic usage

Notifications You must be signed in to change notification settings

mbinayak/b-dom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

B-DOM

Purpose of this script is to load fast for old browsers and get basic html manipulation features

Styles

B('.my-class').addClass('myclass-name');

B('.my-class').removeClass('some-class');

B('button#my-id').show();

B('.my-class').hide();

B('button#my-id').show();


Events

B('button#my-id').click(function(event, element) { // TODO handle event callback });

B('button#my-id').change(function(event, element) { // TODO handle event callback });

B('input.some-it').focusIn(function(event, element) { // TODO handle event callback });

B('input.some-it').focusOut(function(event, element) { // handle event callback });

`

About

Get basic html manipulation features, just like jQuery - basic usage

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published