I am getting the error Syntax error, unrecognized expression: [name*="myControl" i]
error in Edge, but the page works correctly in Firefox and Chrome.
The jQuery which is causing the error is
function resultSelected(targetControlName, value) {
$('[name*="' + targetControlName + '" i]').val(value);
}
The element which calls that function is
<a onclick="resultSelected('myControl','12345')" href="javascript:void(0)">12345</a>
I'm using jQuery 3.1.1