Advertisement
Guest User

Untitled

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