Advertisement
Guest User

Untitled

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