Archive for March, 2008

JavaScript Method Overloading

A feature of languages such as Java, C# and C++ is the ability to overload methods with multiple parameters. Overloaded methods execute different code depending on the type and amount of parameters supplied– in other words, the type signature of the method. Thus, overloading methods allows for a more flexible API which can handle different possible signatures. Read the rest of this entry »

  • Share/Bookmark

No Comments

Managing Cross Browser issues with JS browser detects & Conditional Comments

Until all browsers completely comply with w3c specifications we have to find workarounds in order for our websites to be pixel perfect in various browsers. The browsers we need to be most concerned with include Internet Explorer, Safari, and Firefox. Read the rest of this entry »

  • Share/Bookmark

10 Comments

Firebug Tutorial: Getting Started

Firebug is a plugin for Firefox that greatly aids CSS and JavaScript debugging. This guide will walk you through installing Firebug and using some of its functionality, including debugging JavaScript, inspecting the DOM and editing CSS on the fly. Read the rest of this entry »

  • Share/Bookmark

, , ,

No Comments