Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 385 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 385 Bytes

go-library

Simple js library to control the dom elements

Usage examples

gO.ready( function(){
	var divElement = gO.el( 'div' )
		.atr( 'data-title', 'example' )
		.addCls( 'hidden' )
		.val( 'Html example' );

	gO.elCreate( 'input' )
		.atr( 'name', 'example' )
		.val( 'Input example' )
		.show( divElement );
});

#Documentation

http://www.gabrielconceicao.com/go