Hi again! I have been trying to validate an input against a data_read array in order to prevent a duplicate, so far what has given me the best result is this javascript:
The data_read is in an event called search with a php block in the "found" event, with a "return true;"
Everything works fine except that the ajax result is the whole html of the form page, when all I need is that "true" or "false" response...
How do I access that value from the js?
Also is there any other way to achieve this in CF? I'm aware that I could use a "jQuery.fn.form.settings.rules.customfn" but so far this way has given better results.
Thanks in advance!!!
jQuery("#nem").blur(function() {
var clientx = jQuery("select#client option:checked").val();
var nemx = jQuery("#nem").val();
jQuery.ajax({
url: '{url:search}',
data: {cliente:clientx, nem:nemx},
success: function(result){
}
});
});
The data_read is in an event called search with a php block in the "found" event, with a "return true;"
Everything works fine except that the ajax result is the whole html of the form page, when all I need is that "true" or "false" response...
How do I access that value from the js?
Also is there any other way to achieve this in CF? I'm aware that I could use a "jQuery.fn.form.settings.rules.customfn" but so far this way has given better results.
Thanks in advance!!!