webdu 2012: web developer conference

Show all feed information | Ping Blog Update

jQuery Introduction Part 3 2 years ago

This is part 3 of a 3 part series: So we’ve now loaded a number of football teams from the server, after the page has loaded... without a page refresh. But wouldn’t be useful if clicking on one of those team names displayed a list of players on that team?

jQuery Introduction Part 2 2 years ago

This is part 2 of a 3 part series. Now that you’ve hopefully got a good handle on getting JSON data via jQuery, let’s look at using ColdFusion to provide that data.
keywords coldfusion

jQuery Introduction Part 1 2 years ago

jQuery is a “fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way you write JavaScript” (source: http://www.jquery.com ). jQuery on the client makes things as …

Select like with cfqueryparam 2 years ago

cfqueryparam is a fantastic part of ColdFusion it helps protect from SQL injection and improves performance. It is a little differnt to use then normal querys and one question that often gets asked is "How do I do a like clause with cfqueryparam?". Well here is the answer. line 4 of …

Create Update Delete example 2 years ago

This is a tutorial for creating a simple content management system in ColdFusion. This is not a full-blown content management system, but a way to add, delete, and modify database records, which is a very common task when using ColdFusion.

Deserializejson - Twitter example 2 years ago

Workign with JSON in ColdFusion is easy. The two functions deserializeJson and serializeJson are easy to use and work the same way on the three main CFML engines.

CFFEED - Twitter example 2 years ago

As Twitter's popularity continues to increase, users and consumers of the information being broadcast are looking for quick and easy ways to integrate some of the information into their own content. So I whipped up this short, but sweet, example of how easy it is to repurpose content from …

CFCOOKIE example 2 years ago

Cookies are an essential part of modern web applications, often being used as a key element of user authentication. In a nutshell, cookies are values sent between a browser and a webserver and stored on the client's PC on a per domain basis. For …

Resizing images on the fly. 2 years ago

Resizing images on the fly with Coldfusion is easy. While it does put a strain on your server you may have a valid reason for wanting to do this.

Adding an alernating Image to CFGRID 3 years ago

This tutorial is the extension to my previous tutorial. This tutorial is using the "cfdocexamples" datasource. In this tutorial "Contract" column has the boolean data in the format of "Y/N". In grid the "Tick" images shown if the value of contract column …