Dear Aicha,
I'm using Joomla 3.4.1 en Visforms 3.4.3.
No other extensions present apart from noconflict and JCE.
It looks like the email comparison and the error text that I defined are not evaluated.
I have put breaks on the document ready statement and on the rules statement.
So, the run stops like expected on the document ready statement, but it doesn't enter the statement, but skips to the end on the next step!
jQuery(document).ready( function(){
var validator = jQuery(document).ready(function() {
jQuery('#visform1').validate({
wrapper: "p",
//absolutly necessary when working with tinymce!
ignore: ".ignore",
rules: {
"email-herhaling" : {equalTo: "#field2",}, },
messages: {
"naam": {required: "Vul hier uw naam in",},"email-herhaling": {email: "De twee email adressen zijn niet gelijk aan elkaar",required: "De twee email adressen zijn niet gelijk aan elkaar",equalTo: "De twee email adressen zijn niet gelijk aan elkaar",}, },
errorPlacement: function (error, element){
error.appendTo('div.fc-tbx' + element.attr("id"));
error.addClass("errorcontainer");
},
}); etc....
Have you any ideas on what could be wrong?
Regards Irene