1
2
2

Friss FM



FRISS FM

<a id="play-pause-button" href="#play"><!-- --> <span id="play-pause">Play</span><!-- --></a><!-- --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script><!-- --><script><!-- --> var audio = new Audio("http://stream.frissfm.hu:10050/;?type=http&nocache=23");<!-- --><!-- --> jQuery('#play-pause-button').on("click", function (event) {<!-- --> event.preventDefault();<!-- --> if (jQuery(this).attr('href') == '#play') {<!-- --> audio.play();<!-- --> jQuery("#play-pause").html("Stop");<!-- --> jQuery(this).attr('href', '#pause');<!-- --> } else {<!-- --> audio.pause();<!-- --> jQuery("#play-pause").html("Play");<!-- --> jQuery(this).attr('href', '#play');<!-- --> }<!-- --> });<!-- --><!-- --></script>