I have been trying to find a way to do something that seems to be pretty simple but can't seem to find a solution out there. I have a post that is made with some HTML in it and would like to dynamically change portions of it. I am using Coldfusion 9 for server side, AJAX, and jQuery UI 1.10.1 & jQuery 1.9.1.
What I would like to do is post in AJAX and replace the data server side within the cfc. Here is the code I have on the Client side.
var ipost = '<li> <h2><a href="PersonsID" target="_blank">Persons Name</a></h2> </li>';
var message_a = $('#message_a').attr('value');
$.ajax({
type: "POST",
url: "cfc/cfc_Forum.cfc?method=func_AddNew&returnformat=json",
data: { message:"message_a=" + wall_post },
success: function () {
$('ul#posts').prepend(ipost);
}
});
I would like to replace the "PersonsID" with a "Session.Variable1" and "Persons Name" with "Session.Variable2". The cfc would be standard protocol for CF. Here is what the component would look like.
<cfcomponent>
<cffunction name="func_AddNew" access="remote" returntype="struct">
<cfargument name="message" type="string" required="true" />
<--- ********** replace "Persons ID" and "Persons Name" ************** --->
<!--- ********* INSERT INTO DATA BASE ************ --->
<cfreturn return />
</cffunction>
</cfcomponent>
Any recommendations would be great!


dataproperty is invalid, it needs both a key and a value, not just a value.data: { thestring: ipost }Other than that, you'd just need to fill in the coldfusion component to do your replace/insert and make it return jsonreturntype="json"– Kevin B Feb 25 at 18:33$(ipost).find("a").attr("href")to get the id, and.text()to get the name. – Kevin B Feb 25 at 19:15