Adding a JS confirm popup inside wordpress
-
Im using wordpress and there is an element that erases a post and want to add a confirmation pop up box with javascript but it isnt working
function wpb_hook_javascript() { if (is_page ('1203')) { ?> <script type="text/javascript"> document.getElementsByClassName("test1").addEventListener("click", myFunction); function myFunction() { confirm("Are you sure?"); } </script> <?php } } add_action('wp_head', 'wpb_hook_javascript');
Viewing 13 replies - 1 through 13 (of 13 total)
Viewing 13 replies - 1 through 13 (of 13 total)
- The topic ‘Adding a JS confirm popup inside wordpress’ is closed to new replies.