Documentation

load

loads a document you'd like to show in the iframe

void load(string value);

Parameters

valuestringthe URL of the document

See also

  • api
  • articles
  • Example

    $$("my_iframe").load("google.com");

    Details

    The source for iframe content can be defined in its constructor by the src property.

    Back to top