Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.  
  3.   window.audioPlaying = 0;
  4.  
  5.   $(".header_audio_enable").click(function() {
  6.     $(this).hide();
  7.     $(".header_audio_disable").show();
  8.     window.audioPlaying = 1;
  9.     console.log(window.audioPlaying);
  10.   });
  11.  
  12.   $(".header_audio_disable").click(function() {
  13.     $(this).hide();
  14.     $(".header_audio_enable").show();
  15.     window.audioPlaying = 0;
  16.     console.log(window.audioPlaying);
  17.   });
  18.  
  19.   var ljudA114 = $("#ljud_A114")[0];
  20.   $(".svg_eko_f1_sal_A114").mouseenter(function() {
  21.     console.log(window.audioPlaying);
  22.     if (window.audioPlaying == 1) {
  23.       ljudA114.play();
  24.     }
  25.   });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement