Hi,
I'm trying to find a way to toggle the action buttons on changing custom field and unchanging it back.
I have a custom field named TagField which allow to add Tags to the Page. The Tags shows Autosuggest of there exists matching tags already.
I am using below to trigger the action button to change.
$('.cms-edit-form').addClass('changed');
In case user reverts back changes and no edit has been done. How can I check if any other fields is already changed or its only tag field then remove the class
$('.cms-edit-form').removeClass('changed');
Thanks
B L Praveeen