I have used the template component with html activated to create a custom
I have also created some inline javascript to detect when the checkbox is clicked:
( inline )
$( document ).ready(function()
{ $(‘#billingCheck’).click(function() {
// Clicked
});
});
The click listener works until a insert any data into an editor I’m presuming because a models data has changed,
Any ideas?