Tags: , , | Posted by Kevin Babcock on 3/4/2010 12:00 AM | Comments (2)
I’m often confronted with the need to take a collection of values and transform them into a different set of values. For example, I want to use Twitter’s search API to get a list of tweets on a certain topic. However, I am only interested in retrieving the URLs to the home pages of each ... [More]
Tags: , , | Posted by Kevin Babcock on 2/28/2010 10:46 PM | Comments (0)
Recently I had the need to add some custom processing to the contents of a RadGrid. I decided that the most desirable solution would be to add a menu of options in the footer of the grid, but unfortunately the RadGrid does not support footer templates. I don’t know if this is because there are other... [More]
Tags: , , | Posted by Kevin Babcock on 2/26/2010 12:55 AM | Comments (0)
Most web developers are keenly aware of the browser’s same-origin policy which prevents document elements (including scripts) from accessing elements of a document from a different origin. A document is considered to be of the same origin if it shares the same protocol, port, and host. For exa... [More]
Tags: , , | Posted by Kevin Babcock on 6/26/2009 12:21 AM | Comments (20)
I’m a big fan of jQuery. I’m no expert, but with a copy of jQuery in Action on my desk and Google Bing at my fingertips I can do a lot of cool things with it. One of the ways I often see people using jQuery is to make Ajax requests. jQuery provides a great library which should take care ... [More]
Tags: , , | Posted by Kevin Babcock on 5/6/2009 7:50 PM | Comments (0)
When using the jQuery client library to make an asynchronous call to the server, there are 6 built-in options available to you - $.ajax(), load(), $.get(), $.getJSON(), $.getScript(), and $.post(). The last 5 of them are simply abstractions of the first, using certain default values for the paramete... [More]