If you want to add any clientlib one the existing of any component , Why
you are not adding that clientlib in component only . So whenever your
required component loads, clientlibs loads
If your action A is any front-end related action or any servlet call.You
can add an identifier(any class or Id) to mediaImage component and then
you can check for that identifier and perform your actionElse you have
traverse through nodes using slingQuery(Get resource and iterate through
child nodes) and check for image-media component then perform your
action.
HiI don't see adding a option to create fragment inside sites would be
good idea. This can be done but will be very complex change. But a way
around already present. Use Content Fragment component on your page.Give
path of CF on component.Then you have the option to edit the CF on page
itself, which open the CF in new page.Edit option is available on
toolbar.
Hi Ashutosh, did u check
thishttps://adobe-consulting-services.github.io/acs-aem-tools/features/vlt-rcp/index.html
I have used this to migrate content/assets in GB's
I did not undertsand your objective clearly here, but I think you want
to run your JS/Jquery code after the pages loads completely . If that
you are looking for then you can use below code you can have
$(document).ready() multiple times in a page. The code gets run in the
sequence in which it appears.You can use the $(window).load() event for
your code since this happens after the page is fully loaded and all the
code in the various $(document).ready() handlers have finished
running.$(window).lo...