Jump to content

Help with append Loop


danjapro

Recommended Posts

Trying to simply append each error message into the error.message div.

 

We can get only one of the error messages at time to display in notification div.

 

We just want each field with error to display in notification div.

 

Can anyone give some direction, we mssing:

 

Error Message loop

 

if((data.row_id).length > 0) {    
$.each(data, function(error_code, message ) {
if(errorCode == $.trim(data.error_code) && errorCode != -1 ){
error_message = data.message;
                           return false; 
       }
    });
}
 
 

 

Print out Error Message(display)

 

 
  var spanerrorgen = $('.error.message').contents().find('h4').html(error_message);
  var appenderrorgen = $('.error.message').contents().find('h4');
   $($fieldref).each(function(){ 
 $(spanerrorgen).append(appenderrorgen);
  });
 errorFields.notify.showNotification(".error");   
Link to comment
https://forums.phpfreaks.com/topic/291010-help-with-append-loop/
Share on other sites

Try changing this:

error_message = data.message;

To this:

error_message += data.message;

More information about the addition assignment operator can be found here:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Assignment_Operators#Addition_assignment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.