Code snippets in Joomla not working

MiVo

New Member
I'm using Joomla for my site, but the code snippets seems not to work in Joomla. I tried to add "Current track" code, but it keeps saying "Loading...." and nothing happens.

Check it out here: www.elecradio.com
 
There is an error your source code. You haven't implemented the code snippets properly. It should be :

HTML:
<span id="cc_stream_info_song">Loading...</span>

You have :

HTML:
<span>Loading...</span>
 
I add it with a module in Joomla, and when I save it the "id =" part is removed, dunnow why, will try to add in HTML manually.
 
Yes if you can add it manually. The id is very important because it indicates to the javascript where the information should be displayed.
 
Top