Include
From FirebugWiki
Downloads and executes a remote script in a web page. Especially useful to import libraries for using them inside the Command Line.
Contents |
Syntax
include()
include(url[, alias])
include(alias)
Parameters
If include() is written without parameters, it prints a table with all previously specified aliases.
url
URL of the script to include. If set to null, alias is removed. (optional)
alias
Alias name for the included script. (optional for definition, required for usage)
Example of use
Let's assume you want to type a series of commands in the javascript console. And for convenience, you would like to use a Framework (let's say jQuery).
But the webpage that you debug does not use it. Fortunately, the include command allows you to import jQuery:
include("http://code.jquery.com/jquery-latest.js");
Now you are happy with this ability to use your favorite library on any page. But typing every time the url minds you a lot.
Fortunately again(!), you can also create an alias for this URL:
include("http://code.jquery.com/jquery-latest.js", "jquery");
and reuse it every time you want by passing the alias instead of the URL when you call include:
include("jquery");
Some time later, you do not remember the alias you have created. To list them, you type this command:
include();
And you are returned this table:
You notice that you will not use vaporjs anymore. You type this command to delete it:
include(null, "vaporjs");
Enjoy !
