jQuery selector can\'t select an ID if it contains a . in it. in my application ID name generates dynamically from usernames.
.
How can I esca
The the jQuery documentation states that two backslashes are used to escape them.
So your example would use $("#This\\.Is\\.ID\\.1")
$("#This\\.Is\\.ID\\.1")