Hello I think this is the right section although i may be wrong...
I'm looking for a simple code where i can put a radio player into that pops when a link is clicked so the radio player is in the pop up.
Can anyone help please?
Printable View
Hello I think this is the right section although i may be wrong...
I'm looking for a simple code where i can put a radio player into that pops when a link is clicked so the radio player is in the pop up.
Can anyone help please?
You weren't very detailed, but you can just put the radio in a file then add target="_blank" to your link...
So using what you've said above will produce something like what club habbo have got under the radio player when clicked on? www./clubhabbo.net/radio/popup.html
Put this in the head tags:
The link:Code:<script type="text/javascript">
function popup(url, width, height, name)
{
window.open(url, name, 'width='+width+',height='+height+',resizable=0,scrollbars=0,location=0');
}
</script>
Hopefully that would work.HTML Code:<a href="#" onClick=popup('radio.html', '300', '150', 'radio')
It would just go under that.
Change 300 and 150 to the width and height you want.HTML Code:<a href="#" onClick="popup('radio.html', '300', '150', 'radio')">Radio popup</a>
Ohhh okay thank you :) +Rep