Table of Contents

Value Methods

The following methods are bound into each element by the framework.

var Some_Ele = d$(Selector);

// Get tag attribute
Some_Ele.attr("name")

// Set tag attribute
Some_Ele.attr("name","new-value");

// Set css, eg. backgroundColor, not background-color
Some_Ele.css({
		backgroundColor:"red"
});

// Set inner HTML
Some_Ele.html(New_Html);

Display Methods

// Show element
Some_Ele.show();

// Hide element
Some_Ele.hide();

// Set show/hide with boolean
Some_Ele.disp(bool_value);

Event Method

// Set event
Some_Ele.on("click",Ev=>{...});

Side Use

// Scroll to top
Some_Ele.to_top();

// Scroll to bottom
Some_Ele.to_bottom();