maximus87

Untitled

Apr 18th, 2025
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <div class="footer-newsletter newsletter-module"><?php echo do_shortcode('[gravityform id="25" title="false" ajax="true"]'); ?></div>
  2. <script>
  3. document.addEventListener("DOMContentLoaded", function() {
  4. var emailAddressInput = document.querySelector('.email-address input');
  5. var hideFields = document.querySelectorAll('.hide-field');
  6.  
  7. emailAddressInput.addEventListener('focus', function() {
  8. // Loop through each hide field and show it
  9. for (var i = 0; i < hideFields.length; i++) {
  10. hideFields[i].style.display = 'block';
  11. }
  12. });
  13.  
  14. });
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment