Regular Expressions 101

Save & Share

  • Regex Version: ver. 1
  • Update Regex
    ctrl+⇧+s
  • Save new Regex
    ctrl+s
  • Add to Community Library

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression

/
/
g

Test String

Code Generator

Generated Code

import java.util.regex.Matcher; import java.util.regex.Pattern; public class Example { public static void main(String[] args) { final String regex = "http:\\/\\/([a-zA-Z0-9\\-]+\\.)+[a-zA-Z0-9\\-]+:[a-zA-Z0-9\\-]+\\/[a-zA-Z]+\\.[a-zA-Z]+"; final String string = "\n" + "<!DOCTYPE html>\n" + "<html lang=\"en\">\n" + " <head>\n" + " <meta charset=\"utf-8\">\n" + " <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n" + " <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n" + " <title>Dance Radio Stations</title>\n" + " <meta name=\"description\" content=\"Listen to 670 Dance Radio Stations. Dance music is written and played with the sole intention to facilitate dancing (usually in a nightclub environment and mixed in sets by DJs). The vast majority of contemporary music considered as Dance is Electronic based. Dance music covers a large amount of different electronic genres.\">\n" + " <meta name=\"keywords\" content=\"Dance, Dance internet radio, Dance online radio, Dance free music, Dance radio stations, Dance online radio stations, Dance internet radio stations, Dance online music\">\n" + " <link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css\">\n" + " <link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css\">\n" + " <link rel=\"stylesheet\" href=\"/css/custom.css\">\n" + " <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js\"></script>\n" + " <script>\n" + " (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n" + " (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\n" + " m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n" + " })(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n\n" + " ga('create', 'UA-56971314-1', 'auto');\n" + " ga('require', 'displayfeatures');\n" + " ga('send', 'pageview');\n" + " </script>\n" + " <script type=\"text/javascript\" src=\"/jPlayer/dist/jplayer/jquery.jplayer.min.js\"></script>\n" + " <script type=\"text/javascript\" src=\"/jPlayer/dist/jplayer/jquery.jplayer.min.js\"></script>\n" + "<script type=\"text/javascript\">\n" + "//<![CDATA[\n" + " $(document).ready(function(){\n" + " var stream1 = {\n" + " mp3: \"http://stream.soundicradio.com/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_1\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream1);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume1').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume1').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream1).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream2 = {\n" + " mp3: \"http://188.165.23.150:8510/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_2\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream2);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume2').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume2').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream2).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_2\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream3 = {\n" + " mp3: \"http://198.50.197.80:9946/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_3\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream3);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume3').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume3').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream3).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_3\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream4 = {\n" + " mp3: \"http://91.121.165.51:2210/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_4\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream4);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume4').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume4').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream4).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_4\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream5 = {\n" + " mp3: \"http://198.27.65.17:9228/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_5\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream5);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume5').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume5').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream5).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_5\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream6 = {\n" + " mp3: \"http://softrockradio.purestream.net:8004/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_6\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream6);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume6').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume6').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream6).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_6\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream7 = {\n" + " mp3: \"http://46.163.124.61:8700/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_7\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream7);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume7').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume7').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream7).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_7\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream8 = {\n" + " mp3: \"http://88.198.10.229:8061/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_8\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream8);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume8').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume8').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream8).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_8\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream9 = {\n" + " mp3: \"http://mp3.radio-reeperbahn.de:80/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_9\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream9);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume9').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume9').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream9).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_9\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream10 = {\n" + " mp3: \"http://maxxima.mine.nu:8000/;stream/1\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_10\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream10);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume10').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume10').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream10).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_10\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream11 = {\n" + " mp3: \"http://188.165.202.221:8282/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_11\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream11);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume11').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume11').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream11).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_11\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream12 = {\n" + " mp3: \"http://stream.pro-fm.net:8200/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_12\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream12);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume12').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume12').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream12).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_12\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream13 = {\n" + " mp3: \"http://109.206.96.12:8000/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_13\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream13);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume13').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume13').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream13).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_13\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream14 = {\n" + " mp3: \"http://dance.radiofunky.ro:7500/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_14\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream14);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume14').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume14').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream14).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_14\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream15 = {\n" + " mp3: \"http://uplink.duplexfx.com:8072/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_15\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream15);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume15').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume15').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream15).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_15\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream16 = {\n" + " mp3: \"http://193.243.169.34:9210/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_16\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream16);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume16').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume16').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream16).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_16\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream17 = {\n" + " mp3: \"http://sc01.yertel.com:8094/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_17\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream17);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume17').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume17').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream17).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_17\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream18 = {\n" + " mp3: \"http://emisie.radio69romania.ro:7500/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_18\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream18);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume18').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume18').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream18).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_18\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream19 = {\n" + " mp3: \"http://109.206.96.34:8110/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_19\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream19);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume19').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume19').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream19).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"mp3\",\n" + " cssSelectorAncestor: \"#jp_container_19\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n" + " var stream20 = {\n" + " m4a: \"http://205.164.35.27:80/;\"\n" + " },\n" + " ready = false;\n\n" + " $(\"#jquery_jplayer_20\").jPlayer({\n" + " ready: function (event) {\n" + " ready = true;\n" + " $(this).jPlayer(\"setMedia\", stream20);\n" + " },\n" + " play: function() {\n" + " $(this).jPlayer(\"pauseOthers\", 0);\n" + " $('#volume20').css('visibility','visible');\n" + " },\n" + " pause: function() {\n" + " $(this).jPlayer(\"clearMedia\");\n" + " $('#volume20').css('visibility','hidden');\n" + " },\n" + " error: function(event) {\n" + " if(ready && event.jPlayer.error.type === $.jPlayer.error.URL_NOT_SET) {\n" + " $(this).jPlayer(\"setMedia\", stream20).jPlayer(\"play\");\n" + " }\n" + " },\n" + " swfPath: \"/jPlayer/dist/jplayer\",\n" + " supplied: \"m4a\",\n" + " cssSelectorAncestor: \"#jp_container_20\",\n" + " preload: \"none\",\n" + " globalVolume: \"true\"\n" + " });\n\n" + "});\n" + "//]]>\n" + "</script>\n\n" + " \n" + " </head>\n" + " <body>\n" + " \n" + " <nav class=\"navbar navbar-default navbar-fixed-top\" role=\"navigation\">\n" + " <div class=\"container-fluid\">\n" + " <!-- Brand and toggle get grouped for better mobile display -->\n" + " <div class=\"navbar-header\">\n" + " <button type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-target=\"#bs-example-navbar-collapse-1\">\n" + " <span class=\"sr-only\">Toggle navigation</span>\n" + " <span class=\"icon-bar\"></span>\n" + " <span class=\"icon-bar\"></span>\n" + " <span class=\"icon-bar\"></span>\n" + " </button>\n" + " <a class=\"navbar-brand\" href=\"/\">\n" + " <img style=\"display:inline-block\" alt=\"Brand\" src=\"/images/internet-radio-icon_20x20.png\" height=\"20\">\n" + " <span style=\"color: #000;\">Internet</span><span style=\"color: #c00;\">Radio</span>\n" + " </a>\n\n" + " </div>\n\n" + " <!-- Collect the nav links, forms, and other content for toggling -->\n" + " <div class=\"collapse navbar-collapse\" id=\"bs-example-navbar-collapse-1\">\n" + " <ul class=\"nav navbar-nav\">\n" + " <li class=\"dropdown active\">\n" + " <a class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" aria-expanded=\"false\">\n" + " Listen <span class=\"caret\"></span>\n" + " </a>\n" + " <ul class=\"dropdown-menu\" role=\"menu\">\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', '70s');\" href=\"/stations/70s/\">70s</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', '80s');\" href=\"/stations/80s/\">80s</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'ambient');\" href=\"/stations/ambient/\">Ambient</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'blues');\" href=\"/stations/blues/\">Blues</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'chillout');\" href=\"/stations/chillout/\">Chillout</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'classical');\" href=\"/stations/classical/\">Classical</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'country');\" href=\"/stations/country/\">Country</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'dance');\" href=\"/stations/dance/\">Dance</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'drum and bass');\" href=\"/stations/drum and bass/\">Drum and bass</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'easy listening');\" href=\"/stations/easy listening/\">Easy listening</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'heavy metal');\" href=\"/stations/heavy metal/\">Heavy metal</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'hip hop');\" href=\"/stations/hip hop/\">Hip hop</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'jazz');\" href=\"/stations/jazz/\">Jazz</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'meditation');\" href=\"/stations/meditation/\">Meditation</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'metal');\" href=\"/stations/metal/\">Metal</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'oldies');\" href=\"/stations/oldies/\">Oldies</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'psytrance');\" href=\"/stations/psytrance/\">Psytrance</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'reggae');\" href=\"/stations/reggae/\">Reggae</a></li>\n" + " <li><a onClick=\"ga('send', 'event', 'genreclick', 'navbar', 'rock');\" href=\"/stations/rock/\">Rock</a></li>\n" + " <li class=\"divider\"></li><li><a href=\"/stations/\">More Genres</a></li>\n\n" + " </ul>\n" + " </li>\n\n" + " <li class=\"dropdown\">\n" + " <a class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" aria-expanded=\"false\">\n" + " Broadcast <span class=\"caret\"></span>\n" + " </a>\n" + " <ul class=\"dropdown-menu\" role=\"menu\">\n" + " <li><a href=\"/servers/\">Start your own station</a></li>\n" + " <li><a href=\"/servers/prices/\">Prices</a></li>\n" + " <li class=\"divider\"></li>\n" + " <li><a href=\"/community/forums/guides.12/\">Guides</a></li>\n" + " <li><a href=\"/community/forums/faq.9/\">FAQs</a></li>\n" + " <li class=\"divider\"></li>\n" + " <li><a href=\"https://control.internet-radio.com:2199/\" target=\"_blank\">Control Panel Login</a></li>\n" + " </ul>\n" + " </li>\n\n" + " <li class=\"dropdown\">\n" + " <a class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" aria-expanded=\"false\">\n" + " Discuss <span class=\"caret\"></span>\n" + " </a>\n" + " <ul class=\"dropdown-menu\" role=\"menu\">\n" + " <li><a href=\"/community/\">Forum Home</a></li>\n" + " <li><a href=\"/contact/\">Contact Us</a></li>\n" + " <li class=\"divider\"></li>\n" + " <li><a href=\"/community/forums/support.2/\">Support</a></li>\n" + " <li><a href=\"/community/forums/faq.9/\">FAQs</a></li>\n" + " <li><a href=\"/community/forums/guides.12/\">Guides</a></li>\n" + " <li><a href=\"/community/forums/pre-sales-questions.5/\">Pre Sales Questions</a></li>\n" + " <li class=\"divider\"></li>\n" + " <li><a href=\"/community/forums/volunteering.14/\">Volunteering</a></li>\n" + " <li><a href=\"/community/forums/shows.17/\">Shows</a></li>\n" + " <li><a href=\"/community/forums/music.18/\">Music</a></li>\n" + " <li class=\"divider\"></li>\n" + " <li><a href=\"/community/forums/chat.10/\">Chat</a></li>\n" + " <li><a href=\"/community/forums/news.7/\">News</a></li>\n" + " <li><a href=\"/community/forums/feedback.8/\">Feedback</a></li>\n" + " </ul>\n" + " </ul>\n\n" + " <form class=\"navbar-form navbar-right\" role=\"search\" name=\"search\" method=\"get\" action=\"/search/\">\n" + " <div class=\"form-group\">\n" + " <input type=\"text\" name=\"radio\" class=\"form-control\" placeholder=\"Search\">\n" + " </div>\n" + " <button type=\"submit\" class=\"btn btn-default\">Search</button>\n" + " </form>\n" + " </div><!-- /.navbar-collapse -->\n" + " </div><!-- /.container-fluid -->\n" + " </nav>\n\n" + " <!-- Begin page content -->\n" + " \n" + " <div class=\"container\">\n" + " <div class=\"row\">\n" + " <div class=\"col-md-7\">\n" + " <h1>Dance Radio Stations</h1>\n" + " <p class=\"lead\">We have 670 radio stations playing <b>Dance</b>.</p>\n" + " <table class=\"table table-striped\">\n" + " <tbody>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_1\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_1\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://stream.soundicradio.com/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume1\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">Soundic Radio</h4>\n" + " <br>\n" + " <b>Rita Ora - I Will Never Let You Down </b><br>\n" + " \n" + " <br>Genres: dance <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'pop');\" href=\"/stations/pop/\">pop</a> <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'top 40');\" href=\"/stations/top 40/\">top 40</a><!--\n" + " <br><samp>1 http://stream.soundicradio.com/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_1\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 78 Listeners<br>\n" + " <i style=\"font-size: 20px;\" class=\"mdi-av-high-quality\"></i> 192 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://stream.soundicradio.com/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://stream.soundicradio.com/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://stream.soundicradio.com/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://stream.soundicradio.com/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://stream.soundicradio.com/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://stream.soundicradio.com/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://stream.soundicradio.com/listen.pls&amp;title=Soundic Radio&amp;website=www.soundicradio.com','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://stream.soundicradio.com/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_2\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_2\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://188.165.23.150:8510/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume2\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">>>> POLSKASTACJA .PL >>> - PARTY (Polskie Radio)</h4>\n" + " <br>\n" + " <b>Reel 2 Real & Mad Stuntman - I Like To Move It</b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://www.polskastacja.pl');\" class=\"small text-success\" href=\"http://www.polskastacja.pl\" target=\"_blank\">http://www.polskastacja.pl</a>\n\n" + " <br>Genres: polskie polska eurodance <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'disco');\" href=\"/stations/disco/\">disco</a> dance<!--\n" + " <br><samp>2 http://188.165.23.150:8510/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_2\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 77 Listeners<br>\n" + " 128 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://188.165.23.150:8510/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://188.165.23.150:8510/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://188.165.23.150:8510/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://188.165.23.150:8510/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://188.165.23.150:8510/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://188.165.23.150:8510/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://188.165.23.150:8510/listen.pls&amp;title=>>> POLSKASTACJA .PL >>> - PARTY (Polskie Radio)&amp;website=http://www.polskastacja.pl','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://188.165.23.150:8510/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_3\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_3\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://198.50.197.80:9946/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume3\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">RADIOLF HD AUDIO- VISITE WWW.RADIOLF.COM.BR- E ESCOLHA SEU PLAYER!</h4>\n" + " <br>\n" + " <b>Capital Inicial Independencia Acustico</b><br>\n" + " \n" + " <br>Genres: <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'pop');\" href=\"/stations/pop/\">pop</a> dance eletronicas mix<!--\n" + " <br><samp>3 http://198.50.197.80:9946/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_3\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 74 Listeners<br>\n" + " 96 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://198.50.197.80:9946/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://198.50.197.80:9946/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://198.50.197.80:9946/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://198.50.197.80:9946/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://198.50.197.80:9946/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://198.50.197.80:9946/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://198.50.197.80:9946/listen.pls&amp;title=RADIOLF HD AUDIO- VISITE WWW.RADIOLF.COM.BR- E ESCOLHA SEU PLAYER!&amp;website=www.radiolf.com.br','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://198.50.197.80:9946/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_4\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_4\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://91.121.165.51:2210/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume4\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">>>> POLSKASTACJA .PL >>> - Dance 100 (Polskie Radio)</h4>\n" + " <br>\n" + " <b>Tiesto & Kshmr Feat Vassy - Secrets</b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://www.polskastacja.pl');\" class=\"small text-success\" href=\"http://www.polskastacja.pl\" target=\"_blank\">http://www.polskastacja.pl</a>\n\n" + " <br>Genres: dance<!--\n" + " <br><samp>4 http://91.121.165.51:2210/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_4\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 74 Listeners<br>\n" + " 128 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://91.121.165.51:2210/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://91.121.165.51:2210/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://91.121.165.51:2210/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://91.121.165.51:2210/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://91.121.165.51:2210/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://91.121.165.51:2210/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://91.121.165.51:2210/listen.pls&amp;title=>>> POLSKASTACJA .PL >>> - Dance 100 (Polskie Radio)&amp;website=http://www.polskastacja.pl','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://91.121.165.51:2210/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_5\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_5\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://198.27.65.17:9228/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume5\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">Fiesta Latina HD Radio</h4>\n" + " <br>\n" + " <b>La Sonora Dinamita - Evidencias RMX</b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://www.lafiestahd.com');\" class=\"small text-success\" href=\"http://www.lafiestahd.com\" target=\"_blank\">http://www.lafiestahd.com</a>\n\n" + " <br>Genres: <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'salsa');\" href=\"/stations/salsa/\">salsa</a> <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'merengue');\" href=\"/stations/merengue/\">merengue</a> <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'cumbia');\" href=\"/stations/cumbia/\">cumbia</a> bachata <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'reggaeton');\" href=\"/stations/reggaeton/\">reggaeton</a> dance rancheras tropical rancheras<!--\n" + " <br><samp>5 http://198.27.65.17:9228/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_5\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 73 Listeners<br>\n" + " 128 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://198.27.65.17:9228/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://198.27.65.17:9228/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://198.27.65.17:9228/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://198.27.65.17:9228/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://198.27.65.17:9228/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://198.27.65.17:9228/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://198.27.65.17:9228/listen.pls&amp;title=Fiesta Latina HD Radio&amp;website=http://www.lafiestahd.com','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://198.27.65.17:9228/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_6\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_6\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://softrockradio.purestream.net:8004/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume6\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">Nexus Radio Dance</h4>\n" + " <br>\n" + " <b>JES - Hold On ft. Shant & Clint Maximus (Radio Mix) </b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://nexusradio.fm/dance');\" class=\"small text-success\" href=\"http://nexusradio.fm/dance\" target=\"_blank\">http://nexusradio.fm/dance</a>\n\n" + " <br>Genres: dance <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'house');\" href=\"/stations/house/\">house</a><!--\n" + " <br><samp>6 http://softrockradio.purestream.net:8004/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_6\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 70 Listeners<br>\n" + " 128 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://softrockradio.purestream.net:8004/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://softrockradio.purestream.net:8004/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://softrockradio.purestream.net:8004/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://softrockradio.purestream.net:8004/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://softrockradio.purestream.net:8004/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://softrockradio.purestream.net:8004/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://softrockradio.purestream.net:8004/listen.pls&amp;title=Nexus Radio Dance&amp;website=http://nexusradio.fm/dance','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://softrockradio.purestream.net:8004/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_7\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_7\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://46.163.124.61:8700/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume7\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">BeGay.FM | Macht mich an</h4>\n" + " <br>\n" + " <b>Joe Budden - She Dont Put It Down (feat. Fabolous, Twista, Tank) [Remix]</b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://www.begay.fm');\" class=\"small text-success\" href=\"http://www.begay.fm\" target=\"_blank\">http://www.begay.fm</a>\n\n" + " <br>Genres: <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'top 40');\" href=\"/stations/top 40/\">top 40</a> dance <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'pop');\" href=\"/stations/pop/\">pop</a> <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'house');\" href=\"/stations/house/\">house</a> club charts<!--\n" + " <br><samp>7 http://46.163.124.61:8700/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_7\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 67 Listeners<br>\n" + " 128 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://46.163.124.61:8700/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://46.163.124.61:8700/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://46.163.124.61:8700/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://46.163.124.61:8700/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://46.163.124.61:8700/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://46.163.124.61:8700/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://46.163.124.61:8700/listen.pls&amp;title=BeGay.FM | Macht mich an&amp;website=http://www.begay.fm','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://46.163.124.61:8700/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_8\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_8\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://88.198.10.229:8061/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume8\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">Dance Hit Radio - 8 Tracks Disco</h4>\n" + " <br>\n" + " <b>Hot Chocolate - Everyones A Winner (Opt320)</b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://dancehitradio.dance');\" class=\"small text-success\" href=\"http://dancehitradio.dance\" target=\"_blank\">http://dancehitradio.dance</a>\n\n" + " <br>Genres: <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'disco');\" href=\"/stations/disco/\">disco</a> classic dance retro <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', '70s');\" href=\"/stations/70s/\">70s</a><!--\n" + " <br><samp>8 http://88.198.10.229:8061/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_8\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 66 Listeners<br>\n" + " <i style=\"font-size: 20px;\" class=\"mdi-av-high-quality\"></i> 320 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://88.198.10.229:8061/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://88.198.10.229:8061/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://88.198.10.229:8061/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://88.198.10.229:8061/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://88.198.10.229:8061/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://88.198.10.229:8061/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://88.198.10.229:8061/listen.pls&amp;title=Dance Hit Radio - 8 Tracks Disco&amp;website=http://dancehitradio.dance','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://88.198.10.229:8061/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_9\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_9\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://mp3.radio-reeperbahn.de:80/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume9\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">RADIO Reeperbahn</h4>\n" + " <br>\n" + " <b>Crystal Waters - Gypsy Woman (1991)</b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://www.radio-reeperbahn.de');\" class=\"small text-success\" href=\"http://www.radio-reeperbahn.de\" target=\"_blank\">http://www.radio-reeperbahn.de</a>\n\n" + " <br>Genres: <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'top 40');\" href=\"/stations/top 40/\">top 40</a> <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'pop');\" href=\"/stations/pop/\">pop</a> <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'rock');\" href=\"/stations/rock/\">rock</a> dance charts<!--\n" + " <br><samp>9 http://mp3.radio-reeperbahn.de:80/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_9\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 63 Listeners<br>\n" + " 128 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://mp3.radio-reeperbahn.de:80/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://mp3.radio-reeperbahn.de:80/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://mp3.radio-reeperbahn.de:80/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://mp3.radio-reeperbahn.de:80/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://mp3.radio-reeperbahn.de:80/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://mp3.radio-reeperbahn.de:80/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://mp3.radio-reeperbahn.de:80/listen.pls&amp;title=RADIO Reeperbahn&amp;website=http://www.radio-reeperbahn.de','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://mp3.radio-reeperbahn.de:80/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_10\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_10\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://maxxima.mine.nu:8000/listen.pls?sid=1');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume10\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\"><a href=\"/station/maxxima/\">Maxxima</a></h4>\n" + " <br>\n" + " <b>DIRTY SOUTH - WITH YOU (NUMAN PAUL REMIX)</b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://www.maxxima.org');\" class=\"small text-success\" href=\"http://www.maxxima.org\" target=\"_blank\">http://www.maxxima.org</a>\n\n" + " <br>Genres: dance<!--\n" + " <br><samp>10 http://maxxima.mine.nu:8000/listen.pls?sid=1 shoutcast2 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_10\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 62 Listeners<br>\n" + " <i style=\"font-size: 20px;\" class=\"mdi-av-high-quality\"></i> 192 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://maxxima.mine.nu:8000/listen.pls?sid=1');\" href=\"/servers/tools/playlistgenerator/?u=http://maxxima.mine.nu:8000/listen.pls?sid=1&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://maxxima.mine.nu:8000/listen.pls?sid=1');\" href=\"/servers/tools/playlistgenerator/?u=http://maxxima.mine.nu:8000/listen.pls?sid=1&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://maxxima.mine.nu:8000/listen.pls?sid=1');\" href=\"/servers/tools/playlistgenerator/?u=http://maxxima.mine.nu:8000/listen.pls?sid=1&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://maxxima.mine.nu:8000/listen.pls?sid=1&amp;title=Maxxima&amp;website=http://www.maxxima.org','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://maxxima.mine.nu:8000/listen.pls?sid=1');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_11\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_11\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://188.165.202.221:8282/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume11\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">Radio Crik Crok</h4>\n" + " <br>\n" + " <b>ROBIN SCHULZ FEAT. FRANCESCO YATES - SUGAR</b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://www.radiocrikcrok.it');\" class=\"small text-success\" href=\"http://www.radiocrikcrok.it\" target=\"_blank\">http://www.radiocrikcrok.it</a>\n\n" + " <br>Genres: <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'pop');\" href=\"/stations/pop/\">pop</a> dance <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'top 40');\" href=\"/stations/top 40/\">top 40</a><!--\n" + " <br><samp>11 http://188.165.202.221:8282/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_11\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 60 Listeners<br>\n" + " 128 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://188.165.202.221:8282/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://188.165.202.221:8282/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://188.165.202.221:8282/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://188.165.202.221:8282/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://188.165.202.221:8282/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://188.165.202.221:8282/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://188.165.202.221:8282/listen.pls&amp;title=Radio Crik Crok&amp;website=http://www.radiocrikcrok.it','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://188.165.202.221:8282/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_12\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_12\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://stream.pro-fm.net:8200/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume12\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">Pro FM Danceclassics & Dancehits 24/7 Nonstop Danceradio</h4>\n" + " <br>\n" + " <b>MIXGESELLE - Weekend Warm Up Show - Previous: ROBERT HOWARD / KYM MAZELLE - WAIT</b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://www.profm.nl');\" class=\"small text-success\" href=\"http://www.profm.nl\" target=\"_blank\">http://www.profm.nl</a>\n\n" + " <br>Genres: dance<!--\n" + " <br><samp>12 http://stream.pro-fm.net:8200/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_12\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 60 Listeners<br>\n" + " <i style=\"font-size: 20px;\" class=\"mdi-av-high-quality\"></i> 256 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://stream.pro-fm.net:8200/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://stream.pro-fm.net:8200/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://stream.pro-fm.net:8200/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://stream.pro-fm.net:8200/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://stream.pro-fm.net:8200/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://stream.pro-fm.net:8200/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://stream.pro-fm.net:8200/listen.pls&amp;title=Pro FM Danceclassics & Dancehits 24/7 Nonstop Danceradio&amp;website=http://www.profm.nl','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://stream.pro-fm.net:8200/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_13\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_13\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://109.206.96.12:8000/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume13\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">TOP FM Beograd 106,8 128K</h4>\n" + " <br>\n" + " <b></b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://www.topfm.rs');\" class=\"small text-success\" href=\"http://www.topfm.rs\" target=\"_blank\">http://www.topfm.rs</a>\n\n" + " <br>Genres: <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'pop');\" href=\"/stations/pop/\">pop</a> dance <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'house');\" href=\"/stations/house/\">house</a><!--\n" + " <br><samp>13 http://109.206.96.12:8000/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_13\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 58 Listeners<br>\n" + " 128 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://109.206.96.12:8000/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://109.206.96.12:8000/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://109.206.96.12:8000/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://109.206.96.12:8000/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://109.206.96.12:8000/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://109.206.96.12:8000/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://109.206.96.12:8000/listen.pls&amp;title=TOP FM Beograd 106,8 128K&amp;website=http://www.topfm.rs','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://109.206.96.12:8000/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_14\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_14\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://dance.radiofunky.ro:7500/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume14\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">Radio FUNKY Dance Romania - wWw.RadioFunky.Ro - Powered By F U N K Y - Media</h4>\n" + " <br>\n" + " <b>Broadcast Live from Mamaia</b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://RadioFunky.Ro');\" class=\"small text-success\" href=\"http://RadioFunky.Ro\" target=\"_blank\">http://RadioFunky.Ro</a>\n\n" + " <br>Genres: dance <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'house');\" href=\"/stations/house/\">house</a> <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'electro');\" href=\"/stations/electro/\">electro</a> tehno comercial <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'romania');\" href=\"/stations/romania/\">romania</a><!--\n" + " <br><samp>14 http://dance.radiofunky.ro:7500/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_14\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 57 Listeners<br>\n" + " 128 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://dance.radiofunky.ro:7500/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://dance.radiofunky.ro:7500/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://dance.radiofunky.ro:7500/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://dance.radiofunky.ro:7500/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://dance.radiofunky.ro:7500/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://dance.radiofunky.ro:7500/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://dance.radiofunky.ro:7500/listen.pls&amp;title=Radio FUNKY Dance Romania - wWw.RadioFunky.Ro - Powered By F U N K Y - Media&amp;website=http://RadioFunky.Ro','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://dance.radiofunky.ro:7500/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_15\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_15\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://uplink.duplexfx.com:8072/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume15\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">181.FM Studio 181 (First Generation of Dance)</h4>\n" + " <br>\n" + " <b>Dan Hartman f/Loletta Holloway - Vertigo/Relight My Fire</b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://www.181.fm');\" class=\"small text-success\" href=\"http://www.181.fm\" target=\"_blank\">http://www.181.fm</a>\n\n" + " <br>Genres: dance <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'disco');\" href=\"/stations/disco/\">disco</a><!--\n" + " <br><samp>15 http://uplink.duplexfx.com:8072/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_15\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 56 Listeners<br>\n" + " 128 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://uplink.duplexfx.com:8072/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://uplink.duplexfx.com:8072/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://uplink.duplexfx.com:8072/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://uplink.duplexfx.com:8072/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://uplink.duplexfx.com:8072/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://uplink.duplexfx.com:8072/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://uplink.duplexfx.com:8072/listen.pls&amp;title=181.FM Studio 181 (First Generation of Dance)&amp;website=http://www.181.fm','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://uplink.duplexfx.com:8072/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_16\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_16\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://193.243.169.34:9210/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume16\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">Radio 3 - Belgrade - www.radio3.rs</h4>\n" + " <br>\n" + " <b>Spandau Ballet - Gold</b><br>\n" + " \n" + " <br>Genres: <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'pop');\" href=\"/stations/pop/\">pop</a> dance<!--\n" + " <br><samp>16 http://193.243.169.34:9210/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_16\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 55 Listeners<br>\n" + " 64 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://193.243.169.34:9210/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://193.243.169.34:9210/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://193.243.169.34:9210/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://193.243.169.34:9210/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://193.243.169.34:9210/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://193.243.169.34:9210/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://193.243.169.34:9210/listen.pls&amp;title=Radio 3 - Belgrade - www.radio3.rs&amp;website=www.radio3.rs','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://193.243.169.34:9210/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_17\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_17\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://sc01.yertel.com:8094/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume17\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">Energynet FM</h4>\n" + " <br>\n" + " <b>Jamiroquai - Little L (Boris Dlugosch Radio Mix)</b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://energynet.fm');\" class=\"small text-success\" href=\"http://energynet.fm\" target=\"_blank\">http://energynet.fm</a>\n\n" + " <br>Genres: dance <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'pop');\" href=\"/stations/pop/\">pop</a> <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'house');\" href=\"/stations/house/\">house</a><!--\n" + " <br><samp>17 http://sc01.yertel.com:8094/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_17\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 53 Listeners<br>\n" + " 128 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://sc01.yertel.com:8094/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://sc01.yertel.com:8094/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://sc01.yertel.com:8094/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://sc01.yertel.com:8094/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://sc01.yertel.com:8094/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://sc01.yertel.com:8094/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://sc01.yertel.com:8094/listen.pls&amp;title=Energynet FM&amp;website=http://energynet.fm','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://sc01.yertel.com:8094/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_18\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_18\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://emisie.radio69romania.ro:7500/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume18\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">Radio69Romania</h4>\n" + " <br>\n" + " <b>10 Florin Salam Romeo Fantastik - Sunt pitbullu tau by Scorpyo edit</b><br>\n" + " \n" + " <br>Genres: <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'manele');\" href=\"/stations/manele/\">manele</a> dance petrecere <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'top 40');\" href=\"/stations/top 40/\">top 40</a><!--\n" + " <br><samp>18 http://emisie.radio69romania.ro:7500/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_18\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 53 Listeners<br>\n" + " 128 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://emisie.radio69romania.ro:7500/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://emisie.radio69romania.ro:7500/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://emisie.radio69romania.ro:7500/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://emisie.radio69romania.ro:7500/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://emisie.radio69romania.ro:7500/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://emisie.radio69romania.ro:7500/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://emisie.radio69romania.ro:7500/listen.pls&amp;title=Radio69Romania&amp;website=www.radio69romania.ro','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://emisie.radio69romania.ro:7500/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_19\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_19\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://109.206.96.34:8110/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume19\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">NAXI DANCE RADIO by KBC NET (NAXI,Belgrade,Serbia, NAXI,Beograd,Srbija) - 128k</h4>\n" + " <br>\n" + " <b> 3lau Feat. Emma Hewitt - Alive Again (Extended Mix)</b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://www.naxi.rs');\" class=\"small text-success\" href=\"http://www.naxi.rs\" target=\"_blank\">http://www.naxi.rs</a>\n\n" + " <br>Genres: dance <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'house');\" href=\"/stations/house/\">house</a> <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'rnb');\" href=\"/stations/rnb/\">rnb</a><!--\n" + " <br><samp>19 http://109.206.96.34:8110/listen.pls shoutcast1 audio/mpeg</samp>\n" + " <div id=\"jplayer_inspector_19\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 53 Listeners<br>\n" + " 128 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://109.206.96.34:8110/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://109.206.96.34:8110/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://109.206.96.34:8110/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://109.206.96.34:8110/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://109.206.96.34:8110/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://109.206.96.34:8110/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://109.206.96.34:8110/listen.pls&amp;title=NAXI DANCE RADIO by KBC NET (NAXI,Belgrade,Serbia, NAXI,Beograd,Srbija) - 128k&amp;website=http://www.naxi.rs','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://109.206.96.34:8110/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n" + " <tr>\n" + " <td width=\"74\">\n" + " <div id=\"jquery_jplayer_20\" class=\"jp-jplayer\"></div>\n" + " <div id=\"jp_container_20\" class=\"jp-audio-stream\" role=\"application\" aria-label=\"media player\">\n" + " <div class=\"jp-type-single\">\n" + " <div class=\"jp-gui jp-interface\">\n" + " <div class=\"jp-controls\">\n" + " <i onClick=\"ga('send', 'event', 'tunein', 'playjp', 'http://205.164.35.27:80/listen.pls');\" style=\"font-size: 60px;\" class=\"jp-play text-danger mdi-av-play-circle-outline\"></i>\n" + " <i style=\"font-size: 60px; display: none;\" class=\"jp-pause text-danger mdi-av-pause-circle-outline\"></i>\n" + " </div>\n" + " </div>\n" + " </div>\n" + " <div id=\"volume20\" class=\"text-center\" style=\"visibility: hidden;\">\n" + " <span class=\"jp-current-time\"></span>\n" + " <div class=\"jp-volume-bar progress\" style=\"margin:0;\">\n" + " <div class=\"jp-volume-bar-value progress-bar active progress-bar-striped progress-bar-danger\"></div>\n" + " </div>\n" + " </div>\n" + " </div>\n\n" + " </td>\n" + " <td>\n" + " <h4 class=\"text-danger\" style=\"display: inline;\">1.FM - CLUB ONE RADIO</h4>\n" + " <br>\n" + " <b>Frankox Radioshow - #19</b><br>\n" + " <a onClick=\"ga('send', 'event', 'externallink', 'listing', 'http://www.1.fm');\" class=\"small text-success\" href=\"http://www.1.fm\" target=\"_blank\">http://www.1.fm</a>\n\n" + " <br>Genres: <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'house');\" href=\"/stations/house/\">house</a> <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'techno');\" href=\"/stations/techno/\">techno</a> <a onClick=\"ga('send', 'event', 'genreclick', 'stationlisting', 'electro');\" href=\"/stations/electro/\">electro</a> dance<!--\n" + " <br><samp>20 http://205.164.35.27:80/listen.pls shoutcast1 audio/aacp</samp>\n" + " <div id=\"jplayer_inspector_20\"></div>-->\n" + " </td>\n" + " <td width=\"120\" class=\"text-right hidden-xs\">\n" + " <p>\n" + " 53 Listeners<br>\n" + " 64 Kbps<br>\n" + " </p>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playpls', 'http://205.164.35.27:80/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://205.164.35.27:80/listen.pls&amp;t=.pls\">PLS</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playm3u', 'http://205.164.35.27:80/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://205.164.35.27:80/listen.pls&amp;t=.m3u\">M3U</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"ga('send', 'event', 'tunein', 'playram', 'http://205.164.35.27:80/listen.pls');\" href=\"/servers/tools/playlistgenerator/?u=http://205.164.35.27:80/listen.pls&amp;t=.ram\">RAM</a>\n" + " <a style=\"margin:1px\" class=\"btn btn-default btn-xs\" onClick=\"window.open('/player/?mount=http://205.164.35.27:80/listen.pls&amp;title=1.FM - CLUB ONE RADIO&amp;website=http://www.1.fm','PopupPlayer','width=400,height=300'); ga('send', 'event', 'tunein', 'playpopup', 'http://205.164.35.27:80/listen.pls');\" href=\"#\">FLA</a>\n" + " </td>\n" + " </tr>\n\n" + " </tbody>\n" + " </table>\n" + " <div class=\"text-center\">\n" + " <nav>\n" + "<ul class=\"pagination\"><li><a href=\"/stations/dance/page3\"><span aria-hidden=\"true\">&laquo;</span><span class=\"sr-only\">Previous</span></a></li><li><a href=\"/stations/dance/\">1</a></li><li><a href=\"/stations/dance/page2\">2</a></li><li><a href=\"/stations/dance/page3\">3</a></li><li class=\"active\"><a href=\"#\">4 <span class=\"sr-only\">(current)</span></a></li><li><a href=\"/stations/dance/page5\">5</a></li><li><a href=\"/stations/dance/page6\">6</a></li><li><a href=\"/stations/dance/page7\">7</a></li><li><a href=\"/stations/dance/page8\">8</a></li><li><a href=\"/stations/dance/page9\">9</a></li><li class=\"disabled\"><a>...</a></li><li><a href=\"/stations/dance/page33\">33</a></li><li><a href=\"/stations/dance/page34\">34</a></li><li class=\"next\"><a href=\"/stations/dance/page5\"><span aria-hidden=\"true\">&raquo;</span><span class=\"sr-only\">Next</span></a></li></ul>\n" + "</nav>\n\n" + " </div>\n" + " </div>\n" + " <div class=\"col-md-5\">\n" + " <div class=\"panel panel-default\">\n" + " <div class=\"panel-heading\">\n" + " <h2 class=\"panel-title\"><i class=\"mdi-action-description\"></i> About Dance Music</h2>\n" + " </div>\n" + " <div class=\"panel-body\">\n" + " <p class=\"lead\">Dance music is written and played with the sole intention to facilitate dancing (usually in a nightclub environment and mixed in sets by djs). The vast majority of contemporary music considered as dance is <a onClick=\"ga('send', 'event', 'genreclick', 'description', 'electronic');\" href=\"/stations/electronic/\">electronic</a> based. Dance music covers a large amount of different <a onClick=\"ga('send', 'event', 'genreclick', 'description', 'electronic');\" href=\"/stations/electronic/\">electronic</a> genres.</p>\n" + " </div>\n" + " </div>\n" + " <div class=\"panel panel-default\">\n" + " <div class=\"panel-heading\">\n" + " <h3 class=\"panel-title\"><i class=\"mdi-social-share\"></i> Share This Page</h3>\n" + " </div>\n" + " <div class=\"panel-body text-center\">\n" + " <div class=\"addthis_sharing_toolbox\"></div>\n" + " </div>\n" + " </div>\n" + " <div class=\"panel panel-default\">\n" + " <div class=\"panel-heading\">\n" + " <h3 class=\"panel-title\"><i class=\"mdi-social-whatshot\"></i> Popular Genres</h3>\n" + " </div>\n" + " <div class=\"panel-body text-capitalize text-center\">\n" + " <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'top 40');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-lg\" href=\"/stations/top 40/\">top 40</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'rock');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-lg\" href=\"/stations/rock/\">rock</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'country');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-lg\" href=\"/stations/country/\">country</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'easy listening');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-lg\" href=\"/stations/easy listening/\">easy listening</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'jazz');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-lg\" href=\"/stations/jazz/\">jazz</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'blues');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-md\" href=\"/stations/blues/\">blues</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'classical');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-md\" href=\"/stations/classical/\">classical</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', '80s');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-md\" href=\"/stations/80s/\">80s</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'chillout');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-md\" href=\"/stations/chillout/\">chillout</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'ambient');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-md\" href=\"/stations/ambient/\">ambient</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'oldies');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-sm\" href=\"/stations/oldies/\">oldies</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'reggae');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-sm\" href=\"/stations/reggae/\">reggae</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'dance');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-sm\" href=\"/stations/dance/\">dance</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', '70s');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-sm\" href=\"/stations/70s/\">70s</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'drum and bass');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-sm\" href=\"/stations/drum and bass/\">drum and bass</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'hip hop');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-sm\" href=\"/stations/hip hop/\">hip hop</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'metal');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-sm\" href=\"/stations/metal/\">metal</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'lounge');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-sm\" href=\"/stations/lounge/\">lounge</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'meditation');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-sm\" href=\"/stations/meditation/\">meditation</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'heavy metal');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-sm\" href=\"/stations/heavy metal/\">heavy metal</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'smooth jazz');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/smooth jazz/\">smooth jazz</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'psytrance');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/psytrance/\">psytrance</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', '60s');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/60s/\">60s</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'soul');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/soul/\">soul</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'minimal');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/minimal/\">minimal</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'trance');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/trance/\">trance</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'house');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/house/\">house</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'funk');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/funk/\">funk</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'techno');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/techno/\">techno</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'rap');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/rap/\">rap</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', '90s');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/90s/\">90s</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'alternative');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/alternative/\">alternative</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'pop');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/pop/\">pop</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'rockabilly');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/rockabilly/\">rockabilly</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'electronic');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/electronic/\">electronic</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'latin');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/latin/\">latin</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'bollywood');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/bollywood/\">bollywood</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'disco');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/disco/\">disco</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'new age');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/new age/\">new age</a>&nbsp; <a onClick=\"ga('send', 'event', 'genreclick', 'cloud', 'dubstep');\" style=\"margin: 4px;\" class=\"btn btn-default text-capitalize btn-xs\" href=\"/stations/dubstep/\">dubstep</a>&nbsp; \n" + " </div>\n" + " </div>\n" + " <div class=\"jumbotron\">\n" + " <h2>Start your own station!</h2>\n" + " <p class=\"lead\">Start broadcasting your own radio station with one of our premium radio servers.</p>\n" + " <div class=\"btn-group\">\n" + " <a href=\"/servers/\" class=\"btn btn-lg btn-danger\">Learn More</a>\n" + " <a onClick=\"ga('send', 'event', 'bannerclick', 'sidebarstandard', 'Start your own station!');\" class=\"btn btn-lg btn-success\" href=\"https://www.internet-radio.com/servers/signup/\" role=\"button\"> Sign Up </a>\n" + " </div>\n\n" + " </div>\n" + "<div class=\"text-center\">\n" + "<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script>\n" + "<!-- Responsive Sidebar -->\n" + "<ins class=\"adsbygoogle\"\n" + " style=\"display:block\"\n" + " data-ad-client=\"ca-pub-3292199762079661\"\n" + " data-ad-slot=\"2803180918\"\n" + " data-ad-format=\"auto\"></ins>\n" + "<script>\n" + "(adsbygoogle = window.adsbygoogle || []).push({});\n" + "</script>\n" + "</div>\n" + "<br>\n" + " <div class=\"panel panel-default\">\n" + " <div class=\"panel-heading\">\n" + " <h3 class=\"panel-title\"><i class=\"mdi-communication-forum\"></i> Internet Radio News Forum Threads</h3>\n" + " </div>\n" + " <ul class=\"list-group\">\n" + " <li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/risabovs-new-singl-is-up.20784/\">Risabov's new singl is Up!</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/top-20-radio-stations-august-2015.20659/\">Top 20 Radio Stations - August 2015</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/centova-cast-updated-to-v3-2-2.20483/\">Centova Cast updated to v3.2.2.</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/top-20-radio-stations-july-2015.20411/\">Top 20 Radio Stations - July 2015</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/centova-cast-3-2-1-released.20200/\">Centova Cast 3.2.1 Released.</a></li>\n\n" + " </ul>\n" + " </div>\n" + " <div class=\"panel panel-default\">\n" + " <div class=\"panel-heading\">\n" + " <h3 class=\"panel-title\"><i class=\"mdi-communication-forum\"></i> Radio Volunteering Forum Threads</h3>\n" + " </div>\n" + " <ul class=\"list-group\">\n" + " <li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/always-possible-to-join.20793/\">Always possible to join</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/skilled-edm-dj-looking-for-a-radio-station.20331/\">Skilled EDM DJ looking for a radio station.</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/old-school-show-looking-for-a-new-home-pref-mon-9-12.20764/\">Old school show looking for a new home! Pref Mon 9-12</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/chat-and-spin-radio.20772/\">Chat And Spin Radio</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/press-release.20706/\">PRESS RELEASE</a></li>\n\n" + " </ul>\n" + " </div>\n" + " <div class=\"panel panel-default\">\n" + " <div class=\"panel-heading\">\n" + " <h3 class=\"panel-title\"><i class=\"mdi-communication-forum\"></i> Radio Show Forum Threads</h3>\n" + " </div>\n" + " <ul class=\"list-group\">\n" + " <li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/this-weekend-on-spiritplants-radio.1801/\">This Weekend on SpiritPlants Radio</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/looking-for-news-and-current-affairs-syndication.20317/\">Looking for news and current affairs syndication ...</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/jukeboxradio-needs-you.20736/\">Jukeboxradio Needs You !!!!!</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/80s-club-classics-show.20735/\">80s club classics show</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/looking-for-classic-rock-shows.20704/\">Looking for Classic Rock Shows</a></li>\n\n" + " </ul>\n" + " </div>\n" + " <div class=\"panel panel-default\">\n" + " <div class=\"panel-heading\">\n" + " <h3 class=\"panel-title\"><i class=\"mdi-communication-forum\"></i> Music Forum Threads</h3>\n" + " </div>\n" + " <ul class=\"list-group\">\n" + " <li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/risabovs-new-singl-is-up.20783/\">Risabov's New singl is uP</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/bfractal-music-025-ende-karma-ep.20768/\">[BFractal Music 025] Ende - Karma Ep</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/lunar-album-from-marcello-meconi.20761/\">Lunar album from Marcello Meconi</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/myself-pendu-dialogue-promo-2-jaswinder-bhalla-upasana-singh-preet-harpal.20745/\">MySelf Pendu - Dialogue Promo 2 -Jaswinder Bhalla - Upasana Singh - Preet Harpal</a></li>\n" + "<li class=\"list-group-item\"><a href=\"https://www.internet-radio.com/community/threads/32-bore-baazdeep-latest-punjabi-song-2015.20725/\">32 Bore - Baazdeep - Latest Punjabi Song 2015</a></li>\n\n" + " </ul>\n" + " </div>\n\n" + " </div>\n" + "</div>\n" + "<div class=\"row\">\n" + " <div class=\"col-md-12\">\n" + " <div class=\"text-center\">\n" + "<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script>\n" + "<!-- Responsive Sidebar 2 -->\n" + "<ins class=\"adsbygoogle\"\n" + " style=\"display:block\"\n" + " data-ad-client=\"ca-pub-3292199762079661\"\n" + " data-ad-slot=\"3556290110\"\n" + " data-ad-format=\"auto\"></ins>\n" + "<script>\n" + "(adsbygoogle = window.adsbygoogle || []).push({});\n" + "</script>\n" + "</div>\n" + "<br>\n\n" + " </div>\n" + "</div>\n\n" + " </div>\n" + " \n\n" + " <footer class=\"footer\">\n" + " <div class=\"container\">\n" + " <div class=\"row\">\n" + " <div class=\"col-md-3 col-sm-6\">\n" + " <ul class=\"list-unstyled\">\n" + " <li><h4><a href=\"/\">Radio Station Directory</a></h4></li>\n" + " <li><a href=\"/add/\">Add Your Station</a></li>\n" + " </ul>\n" + " </div>\n" + " <div class=\"col-md-3 col-sm-6\">\n" + " <ul class=\"list-unstyled\">\n" + " <li><h4><a href=\"/servers/\">Radio Servers &amp; Hosting</a></h4></li>\n" + " <li><a href=\"/servers/shoutcast/\">Shoutcast Servers</a></li>\n" + " <li><a href=\"/servers/icecast/\">Icecast Servers</a></li>\n" + " <li><a href=\"/servers/prices/\">Prices</a></li>\n" + " </ul>\n" + " </div>\n" + " <div class=\"col-md-3 col-sm-6\">\n" + " <ul class=\"list-unstyled\">\n" + " <li><h4><a href=\"/community/\">Radio Support Forums</a></h4></li>\n" + " <li><a href=\"/community/forums/faq.9/\">Frequent Questions</a></li>\n" + " <li><a href=\"/community/forums/guides.12/\">Radio Guides</a></li>\n" + " <li><a href=\"/community/forums/support.2/\">Support</a></li> \n" + " <li><a href=\"/contact/\">Contact Us</a></li>\n" + " </ul>\n" + " </div>\n" + " <div class=\"col-md-3 col-sm-6\">\n" + " <ul class=\"list-unstyled\">\n" + " <li><h4><a href=\"/servers/terms/\">Terms &amp; Conditions</a></h4></li>\n" + " <li><a href=\"/privacy-policy/\">Privacy Policy</a></li>\n" + " <li><a href=\"/privacy-policy/#cookies\">Cookies</a></li>\n" + " </ul>\n" + " </div>\n" + " </div>\n\n" + " </div>\n" + " </footer>\n\n" + " <!-- Order is important -->\n" + " <script src=\"https://maxcdn.bootstrapcdn.com/bootstr"; final Pattern pattern = Pattern.compile(regex); final Matcher matcher = pattern.matcher(string); while (matcher.find()) { System.out.println("Full match: " + matcher.group(0)); for (int i = 1; i <= matcher.groupCount(); i++) { System.out.println("Group " + i + ": " + matcher.group(i)); } } } }

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Java, please visit: https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html