Sometime id selector contain a dot like :
$('#first.name')
JQuery have an issue with this type of selector. It's search for an element with id=first AND class name.
So we need internally replace call on id from $('the_id') to $('[id="this_id"]').
On User side the component declaration need to use the syntax => $('[id="..."]')
Sometime id selector contain a dot like : $('#first.name') JQuery have an issue with this type of selector. It's search for an element with id=first AND class name.
So we need internally replace call on id from $('the_id') to $('[id="this_id"]').
On User side the component declaration need to use the syntax => $('[id="..."]')