|
Filtering a SELECT field using AJAX and JQuery |
This article shows you how to do this, there is a demo of the select field using AJAX here: http://www.mccran.co.uk/examples/jquery_textfilter_selectfield/
|
Securing server side Coldfusion code with cfcompile |
If you ever need to protect your intellectual property, or you have suspicions that your code maybe be accessed on a server to be tampered with, then your best option is to compile your code base.
This article addresses how to use the cfcompile command, and what it actually does to your code base.
|
JQuery AJAX Http polling example |
This article examines a way of creating a polling AJAX http request. This is a request that will run every N seconds based on a value. It will hit a remote service and return a result, and display that result on screen.
View a full demo of an AJAX polling request here.
|
Cookies in ColdFusion - cfcookie or cfset? |
ColdFusion can create, edit and delete cookies quite easily, but what are the functional differences in how you create them? Is one way better than another?