Firebug Lite [Works in IE]

Firebug has been the developers dream when it comes to working on web development in Mozilla Firefox. In fact, it was such a great development tool, Microsoft attempted to copy the functionality of this tool to create their own IE...

Read More

JQuery, AJAX, JSON, and .NET

Client rich features often require some dabbling across a couple of different technologies in order to produce your desired product. JavaScript alongside some type of server technology is usually the course of action. My recent work involved the use of...

Read More

JQuery Plugin: ParseQuery

When the time comes to grab and parse some values from the QueryString in JavaScript, it can be as simple as one line of code with this nice, compact JQuery plugin called PARSEQUERY. ParseQuery Download Site: http://plugins.jquery.com/project/parseQuery Essentially this little...

Read More

Javascript Objects Pass by Reference

Just as you expect in your good ol' compiled C# code (and other languages), JavaScript naturally passes its primitives by val, and its complex objects by reference. Depending on what your doing this could nuke something in your code if...

Read More

Browser Compatibility Testing

The issue of browser testing has always bothered me. It is so time consuming and can even sometimes require you to rethink how you have written your JavaScript code to support all browsers. To make things worse, certain browsers like...

Read More

ASP.NET AJAX Modal Popup

ASP.NET AJAX is great. I have fell in love with it since I first used it. It ease of use and increased user experienced is a great trade-off. But down to the point... It can be quite annoying for a...

Read More

Attach JavaScript during Async Postback

JavaScript files can easily be attached to any document using the usual html code: <script src="Scripts/jquery.blockUI.js" type="text/javascript"></script> Thats great...we all know that. But what if I want to dynamically attach a script file from codebehind. Thats an easy one too:...

Read More

ValidatorEnable

Came across this today when working around some JavaScript validation. I essentially needed to force some required fields under certain circumstances and not others. I desperately looked around to find a way to disable a validator. Eventually I came across...

Read More