Nodejs Utililty Methods HTML Element Focus

List of utility methods to do HTML Element Focus

Description

The list of methods to do HTML Element Focus are organized into topic(s).

Method

focus()
var HTMLElement = function(id, visible, display_style)
    this.elem = document.getElementById(id);
    this.id = id;
    this.visible = visible;
    this.display_style = display_style ? display_style : "block"; 
    if(this.visible)
        this.show();
    else
...