danjapro Posted September 12, 2014 Share Posted September 12, 2014 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"); Quote Link to comment https://forums.phpfreaks.com/topic/291010-help-with-append-loop/ Share on other sites More sharing options...
gristoi Posted September 12, 2014 Share Posted September 12, 2014 you are overriding the error_message variable every time you iterate your loop Quote Link to comment https://forums.phpfreaks.com/topic/291010-help-with-append-loop/#findComment-1490837 Share on other sites More sharing options...
cyberRobot Posted September 12, 2014 Share Posted September 12, 2014 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 Quote Link to comment https://forums.phpfreaks.com/topic/291010-help-with-append-loop/#findComment-1490842 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.