View difference between Paste ID: 4jddFV6v and 3H0CE9jV
SHOW: | | - or go back to the newest paste.
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-
  if (audio == 1) {
16+
17-
    var ljudA114 = $("#ljud_A114")[0];
17+
  
18-
    $(".svg_eko_f1_sal_A114")
18+
    
19-
    .mouseenter(function() {
19+
    $(".svg_eko_f1_sal_A114").mouseenter(function() {
20-
    ljudA114.play();
20+
		if (audio == 1) {
21-
    });
21+
		    ljudA114.play();
22
	    }
23
	});
24
});