Enums in Javascript – Part 2

I blogged about this topic earlier also here. That blog post presents an approach to create enums (enumerations) in javascript, exactly like those available in .NET or Java.The later portion of that blog post mentions that the approach presented is extensible, and we...

Thickbox – Show on Page Load

I had a situation where I needed to show a Flash movie in a modal dialog on a Page. Needless to mention, LightBox is the first thing that strikes to mind for such purposes. However, LightBox supports only images. And I needed to show a Flash movie.A quick Google...

Enums in Javascript

UPDATE: An updated and enhanced version of this technique is available here:Enums in Javascript – Part 2 Basically, the title says it all. So, without wasting any time, let’s see an example of an enum in Javascript.{syntaxhighlighter brush:...