Osvel Legon's Blog
01/15/2010
jQuery 1.4 released
Today the 1.4 version of jQuery was released.
01/04/2010
jQuery and JavaScript Coding: Best Practices
When used correctly, jQuery can help you make your website more interactive, interesting and exciting.
12/16/2009
Catching errors on the jQuery's load() function
When using the jQuery's load function there is a way to catch the errors
11/12/2009
jQuery browser detection
jQuery browser detection was working fine for me until recently.
06/10/2009
Overlaying a Transparent Image over the Desktop to Verify Website Designs
Here's a great way to verify that your HTML code is an exact, pixel perfect match to the designs provided.
03/17/2009
Easy Client Side html Encode/Decode using jQuery
Using jQuery for html encode/decode is easy, just:
03/04/2009
LINQ Queries Containing Null Values for Nullable in a Where Clause
How does LINQ to SQL handle the nullable type in the where clause?
02/25/2009
JavaScript Session Variables Without Cookies
Cookie handling in JavaScript - or any language - can easily catch you out. Cookies are limited in number and size and they’re easy to block. However, here’s a fantastic idea that allows you to safely store up to 2Mb of session data without using cookies: Session variables without cookies.
02/13/2009
Firebug Lite - The Firebug for IE
Firebug is an extension for Firefox, but what happens when you need to test your pages in Internet Explorer, Opera, and Safari?
02/13/2009
Full Month Event Calendar
A calendar control is always useful, and this jQuery plug-in jMonthCalendar looks great. I think that maybe we can extend it to work like this Backpack Calendar
02/10/2009
The .d Attribute That Appeared in ASP.NET 3.5 With Web Service Calls
When working directly with JSON serialized ASMX services, be it via jQuery, pure XmlHttpRequest calls, or anything else other than the ScriptManager, one question inevitably arises. That question is of the inexplicable .d attribute that appeared in ASP.NET 3.5.
01/30/2009
jQuery and PNG fading in IE
Using jQuery image fading capabilities for web animations is cool, but when IE is the target browser, we must be careful using it.
12/18/2008
Running Firefox2 and Firefox3 simultaneously
As web developers we need frequently multiple browsers installed on our PC for testing purposes. Here there is one tip about having Firefox2 and Firefox3 on the same PC:
12/01/2008
Recursive Linq Functions
You might have tried writing a recursive LINQ function and run into problems. For instance, the following doesn’t work because ‘factorial’ isn't defined when the right-hand side of the assignment is being evaluated:
12/01/2008
Using the Select LINQ query operator with indexes
You can use Select with a two-parameter lambda expression. You know the version of Select that takes a single-parameter lambda well, but its counterpart is less known (and used).
11/26/2008
Change View Source application for IE
Are you frustrated at Internet Explorer's insistence on using Notepad when you click View Source? This little application let's you use any text editor instead of Notepad. I'm using NotePad++ with Syntax Highlighting and Brace and Indent guideline Highlighting.
11/21/2008
Standalone IE6 with filter support
TredoSoft IE6 standalone is really is a great solution to running both IE6 and IE7 on the same computer.
11/20/2008
ComponentArt Menu item text wrap
ComponentArt Menu control automatically includes text in nobr tags, which force each item not to wrap. This can be undesirable with longer category names. To work around this, simply add the following property to the control
Using hash in Firefox version 3.0 and below
The safest way to clear the hash is location.hash = '#'.