System.FormatException: Input string was not in a correct format.
I am using jquery-2.1.1.js
I have a link on a grid where I can delete a row of data.
When I click on the link, I get an exception in jquery thrown in this function;
Sizzle.error = function( msg ) {
throw new Error( "Syntax error, unrecognized expression: " + msg );
};
the msg value is /Quote/Delete?quoteId=10
This looks OK to me. In fact the runtime execution continues to do what I want after this exception is thrown.
So how do I fox this?