I would like to know if its possible to have a Pop window in AEM. For instance you have a page that that a buy button, once a user clicks the buy button, the pop-up window should be opened to see a list of countries flag to choose from.
Is this Possible? if yes how do i go about it.
TIA.
Solved! Go to Solution.
Views
Replies
Total Likes
@LeviHa2 : If I understand it correctly, this would have to be a custom front-end change using JavaScript, html and CSS. Your js and css changes would be created in clientlibs and should be loaded on the page where you intend to have the link and pop-up.
Something like this - https://www.geeksforgeeks.org/how-to-create-popup-box-using-html-and-css/
thanks.
@LeviHa2 : If I understand it correctly, this would have to be a custom front-end change using JavaScript, html and CSS. Your js and css changes would be created in clientlibs and should be loaded on the page where you intend to have the link and pop-up.
Something like this - https://www.geeksforgeeks.org/how-to-create-popup-box-using-html-and-css/
thanks.
Thanks alot Kamal, exactly what i was looking for.
Hi @LeviHa2
You can refer to the below popup implementation which is done in AEM
https://medium.com/activate-aem/how-to-create-a-responsive-popup-modal-in-aem-440eb8df522b
Also since you an ecommerce use case you can also take a look at custom popups from quick view
https://github.com/AdobeDocs/experience-manager-65.en/blob/main/help/assets/custom-pop-ups.md
Hi @LeviHa2 ,
Yes, it's possible to create a pop-up window in AEM for scenarios like the one you described. Here's a general outline of how you can implement this:
Create the Pop-Up Component:
Trigger the Pop-Up from the Buy Button:
Handle User Interaction:
Integrate with Back-End Services (Optional):
Test and Refine:
By following these steps, you can create a pop-up window in AEM that appears when the user clicks the buy button and allows them to choose from a list of countries flags or perform other actions as needed.
Thanks!