EduardET

Untitled

Mar 27th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. ( function( $ ) {
  3.     $( document ).ready( function() {
  4.         var cf_btn = $( '.wpc-cf .et_pb_contact_submit' )
  5.         cf_btn.click( function() {
  6.             setTimeout( function() {
  7.                 console.log('clear');
  8.                 var message = $( '.wpc-cf .et-pb-contact-message p' );
  9.                 if ( message.length ) {
  10.                     $( '.wpc-cf input' ).attr( 'value', '' );
  11.                     $( '.wpc-cf textarea' ).attr( 'value', '' );
  12.                     $('.popup .et-pb-icon').trigger('click');
  13.                 }
  14.             }, 15000 )
  15.         } )
  16.     } );
  17. } )( jQuery );
  18. </script>
Advertisement
Add Comment
Please, Sign In to add comment