Difference between revisions of "Firefox"

From Organic Design wiki
(an alternative downloader)
(don't embed tutorial vids, just link)
Line 20: Line 20:
 
*[http://developer.mozilla.org/en/docs/FirebugInternals Firebug Internals]
 
*[http://developer.mozilla.org/en/docs/FirebugInternals Firebug Internals]
  
;Videos
+
=== Videos ===
 
*[http://www.digitalmediaminute.com/screencast/firebug-js/ 14 min Tutorial]
 
*[http://www.digitalmediaminute.com/screencast/firebug-js/ 14 min Tutorial]
 
*[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://www.litfuel.net/mybic/index.html?page=tutorials Tutorials]
 +
**[http://youtube.com/watch?v=W4jXAaEMp2M  Debugging AJAX Application with Firebug]
 +
**[http://www.youtube.com/watch?v=FsX6qwQqGgQ CSS editing using Firebug]
  
 
+
=== Logging functions ===
;Youtube
 
{|
 
|- align=center
 
|[http://youtube.com/watch?v=W4jXAaEMp2M  Debugging AJAX Application with Firebug] [http://www.litfuel.net/mybic/index.html?page=tutorials ''(tutorial)'']
 
|[http://www.youtube.com/watch?v=FsX6qwQqGgQ CSS editing using Firebug]
 
|- align=center
 
| {{#ev:youtube|W4jXAaEMp2M}}
 
| {{#ev:youtube|FsX6qwQqGgQ}}
 
|}
 
 
 
 
 
 
 
 
 
; Logging functions
 
 
* console.log(''variable'');
 
* console.log(''variable'');
 
* console.log("The value of StringVariable is %s, ''StringVariable'');
 
* console.log("The value of StringVariable is %s, ''StringVariable'');

Revision as of 21:25, 23 February 2008


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, 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");
  • How do I spell Firefox? How do I abbreviate it?. Firefox FAQ. Mozilla.org. Retrieved on 2007-09-08 through [[W:Archive.org]|Archive.org]].