I get this error on a .click() event in jQuery. I see it in Firebug. I use the latest version, 1.3.2 (min) The click fires an $.ajax() request for a Form in my website. I asked google about this and all he knows is "%" or "[@]" as unrecognized expressions, nothing about the "#".
here is a bit of my code:
$("form#buyForm #submitForm").live("click", function(e) {
var errors = 0;
var inputLastName_value = $("form#buyForm input#userLastName").val();
if (inputLastName_value == "") {
errors = 1;
formErrorHandling("#userLastName");
return false;
}
return false;
});
This way I check all my inputs for errors, and then call formErrorHandling() who does some show/hide, stuff like that, nothing important.
I read that it might be from a selector of mine, but they all seem to be just fine.
Anybody else had the same problem?
Thanks.