You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using jQuery 1.5.1 I encountered an issue with data link when my input names had dots inside the name.
The exception that Chrome was throwing was from sizzle 'Uncaught Syntax error, unrecognized expression: [name=Domain.BusinessRelationship]'
I believe I found the issue and the fix, inside matchByName there are no single quotes around the name element, adding those in the error goes away and the link works as expected.
function matchByName(name) {
var selector = "[name='" + name + "'], [id='" + name +"']";
// include elements in this set that match as well a child matches
return self.filter(selector).add(self.find(selector));
}
The text was updated successfully, but these errors were encountered:
Using jQuery 1.5.1 I encountered an issue with data link when my input names had dots inside the name.
The exception that Chrome was throwing was from sizzle 'Uncaught Syntax error, unrecognized expression: [name=Domain.BusinessRelationship]'
I believe I found the issue and the fix, inside matchByName there are no single quotes around the name element, adding those in the error goes away and the link works as expected.
The text was updated successfully, but these errors were encountered: