I have been a Web applications developer for five years. I’ve worked on enormous projects, small projects and everything in between for the likes of NBC, and MTV as well as small companies and freelance work. Anyone familiar with this sort of work knows quite well that the earnings can be quite significant, and rewarding. [...]
Posts Tagged ‘Web Development’
Debugging JavaScript With IE
Posted: October 30, 2008 in EngineeringTags: Debugging, IE, Internet Explorer, JavaScript, MSIE, Web Development
Debugging JavaScript code in Firefox is easy, but what to do with poor old Internet Explorer? Well here’s your answer. To debug JavaScript in MSIE follow these steps:
Private JavaScript class members
Posted: June 2, 2008 in EngineeringTags: Closures, JavaScript, Private members, Web Development
After always wondering if it was possible to create private members somehow in JavaScript, I finally took it upon myself to investigate. Due to a concept of ‘closures’ relating a symbol’s scope it is possible to create private class instance members/methods.