EduardET

Untitled

Mar 23rd, 2018
123
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 phone = $( '#et-info-phone a' );
  5.         console.log( phone );
  6.         if ( $( 'body' ).hasClass( 'page-id-8990' ) ) {
  7.             phone.attr( 'href', 'tel:123456789' );
  8.             phone.text( '123 456 789' )
  9.         }
  10.         if ( $( 'body' ).hasClass( 'page-id-9561' ) ) {
  11.             phone.attr( 'href', 'tel:000111222' );
  12.             phone.text( '000 111 222' )
  13.         }
  14.         if ( $( 'body' ).hasClass( 'page-id-9566' ) ) {
  15.             phone.attr( 'href', 'tel:33344455' );
  16.             phone.text( '333 444 555' )
  17.         }
  18.     } );
  19. } )( jQuery );
  20. </script>
Advertisement
Add Comment
Please, Sign In to add comment