Difference between revisions of "Firefox"

From Organic Design wiki
m
(Firefox add-on 'censorship' knocked back by Mozilla)
Line 32: Line 32:
 
* console.time("UNIQUE ID");
 
* console.time("UNIQUE ID");
 
* console.timeEnd("UNIQUE ID");
 
* console.timeEnd("UNIQUE ID");
 +
 +
== News ==
 +
*[http://www.nzherald.co.nz/technology/news/article.cfm?c_id=5&objectid=10724422 Firefox add-on 'censorship' knocked back by Mozilla]
 
[[Category:Software]]
 
[[Category:Software]]

Revision as of 10:14, 9 May 2011

W:Mozilla Firefox is a graphical web browser developed by the Mozilla Corporation, and a large community of external contributors. Firefox, officially abbreviated as Fx or fx and popularly abbreviated FF, started as a fork of the Navigator browser component of the Mozilla Application Suite. Firefox has replaced the Mozilla Suite as the flagship product of the Mozilla project, under the direction of the Mozilla Foundation.

Firefox Extensions

Firebug tutorials

Videos

Logging functions

  • console.log(variable);
  • console.log("The value of StringVariable is %s, StringVariable);
  • console.info(variable);
  • console.warn(variable);
  • console.error(variable);
  • debugger; # Breaks execution at debugger point -Select Options → Break on errors
  • console.time("UNIQUE ID");
  • console.timeEnd("UNIQUE ID");

News