Jquery Validation: Display the error alongside the element and also append it to a div container?

Look at this: how to display error messages.

Thanks mpccolorado – derahool Jun 10 '11 at 13:02.

I found a similar question in Display both summary and individual error messages using jquery validation plugin. The difference being they alert the error message. I worked out the solution to my problem by adding the following to the validate method showErrors: function(errorMap, errorList) { if (submitted) { var summary = "You have the following errors: \n"; $.

Each(errorList, function() { summary += " * " + this. Message + "\n"; }); //alert(summary); $("div. Container").

Html(summary); $("div. Container").show(); submitted = false; } else { $("div. Container").hide(); } this.

DefaultShowErrors(); }, invalidHandler: function(form, validator) { submitted = true; }.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions