Hi, Been looking at Jquery for a longtime and decided to take the plunge. I work in coldfusion and would like yo know how to call a jquery function when my server side query has been run.
When I delete a user. I want to call a function that displays a message when the user is deleted. <cffunction name="deleteUser" access="public"> <cfquery datasource="#application.datasource#" name="qDeleteUser"> DELETE FROM USERS WHERE id = '#URL.id#' </cfquery> </cffunction>