Hi @ashishm85330433 You can create a clientlib with some custom js like this: (function (document, $) {
"use strict";
$(document).on("foundation-contentloaded", function (e) {
// do your custom code here
});
})(document, Granite.$); Then call the clientlib in the component dialo...