List of utility methods to do HTML Element Focus
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 ... |