Hi, Daemach...

I've been working with the various suggestions I've gotten and
have made some progress.  I had to spend most of yesterday
trying to figure out why my computer wouldn't boot.  Finally
isolated a software problem with a virtual CD emulator.  Deleted
that and all is well.

Now with my code...

The outcome I'm looking for now is to have the error message appear
above each form field.  Here's an online demo of what's happening:

http://bodaford.whitestonemedia.com/html/trial_field_validation.cfm

I get duplicate error messages and in the wrong spots...
I don't know how to combine the elements to make
them function properly.  Any ideas?

Thanks!

Rick

Here's the code...

<script type="text/javascript">

        $(document).ready(function(){

                $("#Principal").blur(function(){ 
                $.post("callpage_Validate_Mortgage_Inputs.cfm",
{principal:$("#Principal").val()}, handleCallback) });
                
                $("#Interest").blur(function(){
        
$.post("callpage_Validate_Mortgage_Inputs.cfm",{interest:$("#Interest").val(
)}, handleCallback) });
                
                $("#Years").blur(function(){
        
$.post("callpage_Validate_Mortgage_Inputs.cfm",{years:$("#Years").val()},
handleCallback) });
                
                function handleCallback(data) {
        
$("#Result_Principal").empty().appendTo("#Result_Principal").append(data);
        
$("#Result_Interest").empty().appendTo("#Result_Interest").append(data);
        
$("#Result_Years").empty().appentTo("#Result_Years").append(data);

                }
                                
        });

        

</script>



-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Daemach
Sent: Thursday, March 15, 2007 12:26 AM
To: discuss@jquery.com
Subject: Re: [jQuery] Ok... one last effort to make this work... help!


Did you get this working Rick?





_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to