Save This Page
Home » openjdk-7 » org.w3c » dom » html » [javadoc | source]
org.w3c.dom.html
public interface: HTMLScriptElement [javadoc | source]

All Implemented Interfaces:
    HTMLElement

Script statements. See the SCRIPT element definition in HTML 4.0.

See also the Document Object Model (DOM) Level 2 Specification.
Method from org.w3c.dom.html.HTMLScriptElement Summary:
getCharset,   getDefer,   getEvent,   getHtmlFor,   getSrc,   getText,   getType,   setCharset,   setDefer,   setEvent,   setHtmlFor,   setSrc,   setText,   setType
Method from org.w3c.dom.html.HTMLScriptElement Detail:
 public String getCharset()
    The character encoding of the linked resource. See the charset attribute definition in HTML 4.0.
 public boolean getDefer()
    Indicates that the user agent can defer processing of the script. See the defer attribute definition in HTML 4.0.
 public String getEvent()
    Reserved for future use.
 public String getHtmlFor()
    Reserved for future use.
 public String getSrc()
    URI designating an external script. See the src attribute definition in HTML 4.0.
 public String getText()
    The script content of the element.
 public String getType()
    The content type of the script language. See the type attribute definition in HTML 4.0.
 public  void setCharset(String charset)
 public  void setDefer(boolean defer)
 public  void setEvent(String event)
 public  void setHtmlFor(String htmlFor)
 public  void setSrc(String src)
 public  void setText(String text)
 public  void setType(String type)