Difference between revisions of "Firefox"

From Organic Design wiki
(News: rm - link gone)
(Logging functions: What the future could hold for Firefox OS - competing with iOS and Android on their own turf isn't going to work)
Line 23: Line 23:
 
**[http://youtube.com/watch?v=W4jXAaEMp2M  Debugging AJAX Application with Firebug]
 
**[http://youtube.com/watch?v=W4jXAaEMp2M  Debugging AJAX Application with Firebug]
 
**[http://www.youtube.com/watch?v=FsX6qwQqGgQ CSS editing using Firebug]
 
**[http://www.youtube.com/watch?v=FsX6qwQqGgQ CSS editing using Firebug]
 +
 +
== Firefox news ==
 +
*[http://arstechnica.com/gadgets/2013/05/what-the-future-could-hold-for-firefox-os/ What the future could hold for Firefox OS] ''- competing with iOS and Android on their own turf isn't going to work''
  
 
=== Logging functions ===
 
=== Logging functions ===

Revision as of 14:13, 9 May 2013

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

Firefox news

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");