Hi expert ,
iam using the below code to get a query result as html. The code works and it returns the query result (Project_id, Project_name) from the query that runs inside the "output_test.cfm".
So what i need is to be able to get only Project_id resulting from the query and assign it to a text box.
So in other terms, i need to control more the data by specifying the field name i want to get. Is this possible ?
thanks guys
var ProjID =1275;
$.get('output_test.cfm',{projectvarid:ProjID},function(data)
{
$("#notes").html(data);
}
);