The element:
<input type='text' id='Customer.name' value='' />
The invalid jQuery selector:
$('#Customer.name')
Does anyone know what the selector should be for this element?
The element:
<input type='text' id='Customer.name' value='' />
The invalid jQuery selector:
$('#Customer.name')
Does anyone know what the selector should be for this element?
$('input[id="Customer.name"]')
You can escape the period character with two backslashes:
$('#Customer\\.name')