Difference between revisions of "Firefox"

From Organic Design wiki
m
Line 7: Line 7:
  
 
==Firebug tutorials==
 
==Firebug tutorials==
{#tree:openlevels=1|
+
{{#tree:openlevels=1|
 
*[http://www.getfirebug.com/docs.html Documentation]
 
*[http://www.getfirebug.com/docs.html Documentation]
 
**[http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i/ Firebug tutorial]
 
**[http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i/ Firebug tutorial]
Line 14: Line 14:
 
**[http://gougeyoureyesout.com/cssFun/2007/01/firebug-10-is-out-talk-for-power-users.html Joe Hewitt highlights]
 
**[http://gougeyoureyesout.com/cssFun/2007/01/firebug-10-is-out-talk-for-power-users.html Joe Hewitt highlights]
 
**[http://files.jnewland.com/firebug.mov Excellent overview]
 
**[http://files.jnewland.com/firebug.mov Excellent overview]
 +
**[http://youtube.com/watch?v=W4jXAaEMp2M  Debugging AJAX Application with Firebug]
 +
**[http://www.youtube.com/watch?v=FsX6qwQqGgQ CSS editing using Firebug]
 
}}
 
}}
  
*[http://youtube.com/watch?v=W4jXAaEMp2M  Debugging AJAX Application with Firebug]
+
{|
{{#ev:youtube|W4jXAaEMp2M }}
+
|-
*[http://www.youtube.com/watch?v=FsX6qwQqGgQ CSS editing using Firebug]
+
| {{#ev:youtube|W4jXAaEMp2M }}
{{#ev:youtube|FsX6qwQqGgQ}}
+
| {{#ev:youtube|FsX6qwQqGgQ}}
 +
|}
 +
 
 +
 
 +
 
  
 
; Logging functions
 
; Logging functions

Revision as of 19:07, 22 September 2007


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[1] and popularly abbreviated FF,[2] 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.

Firebug tutorials



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