All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLScriptElement

public interface HTMLScriptElement
extends HTMLElement
Script statements. See the SCRIPT element definition in HTML 4.0.


Method Index

 o getCharset()
The character encoding of the linked resource.
 o getDefer()
Indicates that the user agent can defer processing of the script.
 o getEvent()
Reserved for future use.
 o getHtmlFor()
Reserved for future use.
 o getSrc()
URI designating an external script.
 o getText()
The script content of the element.
 o getType()
The content type of the script language.
 o setCharset(String)
 o setDefer(boolean)
 o setEvent(String)
 o setHtmlFor(String)
 o setSrc(String)
 o setText(String)
 o setType(String)

Methods

 o getText
 public abstract String getText()
The script content of the element.

 o setText
 public abstract void setText(String text)
 o getHtmlFor
 public abstract String getHtmlFor()
Reserved for future use.

 o setHtmlFor
 public abstract void setHtmlFor(String htmlFor)
 o getEvent
 public abstract String getEvent()
Reserved for future use.

 o setEvent
 public abstract void setEvent(String event)
 o getCharset
 public abstract String getCharset()
The character encoding of the linked resource. See the charset attribute definition in HTML 4.0.

 o setCharset
 public abstract void setCharset(String charset)
 o getDefer
 public abstract boolean getDefer()
Indicates that the user agent can defer processing of the script. See the defer attribute definition in HTML 4.0.

 o setDefer
 public abstract void setDefer(boolean defer)
 o getSrc
 public abstract String getSrc()
URI designating an external script. See the src attribute definition in HTML 4.0.

 o setSrc
 public abstract void setSrc(String src)
 o getType
 public abstract String getType()
The content type of the script language. See the type attribute definition in HTML 4.0.

 o setType
 public abstract void setType(String type)

All Packages  Class Hierarchy  This Package  Previous  Next  Index