/go-library

Simple js library to control the dom elements

Primary LanguageJavaScriptGNU General Public License v3.0GPL-3.0

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