Tag Archives: firebug

CSS effective selector

CSS optimization Recently I posted an article about CSS optimization describing five simple steps you can do to speed up the page load time and the bowser execution time. One of the key features is to use effective selectors, but … Continue reading

Posted in css, micro tutorial | Tagged , , , , , , | Leave a comment

Firebug’s console.profile vs console.time

Firebug’s console.time! This post is directly related to the previous post where I explain how to use the Firebug’s console object and in that case its time method. That is really powerful and gives the opportunity to track the performance … Continue reading

Posted in javascript, micro tutorial | Tagged , , , , , , , , | Leave a comment

Firebug’s console.time() accuracy

Firebug’s console.time() As I wrote in my previous post Firebug is giving the ability to test performance of any chunk of JavaScript code with its console.time() method. One of the most discussed topics about performance and one of the most … Continue reading

Posted in javascript, micro tutorial | Tagged , , , , | 2 Comments

Profiling JavaScript with Firebug. console.profile() & console.time()!

Firebug and the console object Although my impression is that most of the web developers use Firefox and most of them are using Firebug, I’m not sure that they use the full potential of this brilliant software. Firebug’s console view … Continue reading

Posted in javascript, micro tutorial | Tagged , , , , , , , , , , , | Leave a comment

Writing a jQuery plugin – (part 2). Sample plugin.

To be breve I’ll write some sample code and quickly describe it afterwards. So what’s a plugin. Lets make a simple logging plugin that overrides the console.log function and prevents MSIE browser to throw an error when this function misses. … Continue reading

Posted in javascript, micro tutorial | Tagged , , , , , | Leave a comment