org.w3c.dom.html
public interface HTMLScriptElement extends HTMLElement
| Method Summary | |
|---|---|
| String | getCharset()
The character encoding of the linked resource. |
| boolean | getDefer()
Indicates that the user agent can defer processing of the script. |
| String | getEvent()
Reserved for future use. |
| String | getHtmlFor()
Reserved for future use. |
| String | getSrc()
URI designating an external script. |
| String | getText()
The script content of the element. |
| String | getType()
The content type of the script language. |
| void | setCharset(String charset) |
| void | setDefer(boolean defer) |
| void | setEvent(String event) |
| void | setHtmlFor(String htmlFor) |
| void | setSrc(String src) |
| void | setText(String text) |
| void | setType(String type) |