hello-theme/modules/admin-home/assets/js/hello-elementor-menu.js
Nicola Peluchetti 1c8d7688dc refactor scripts
2025-03-27 13:14:15 +09:00

6 lines
243 B
JavaScript

document.addEventListener( 'DOMContentLoaded', () => {
const links = document.querySelectorAll( 'a[href="admin.php?page=hello-elementor-ai-site-planner"]' );
links.forEach( ( link ) => {
link.setAttribute( 'target', '_blank' );
} );
} );