I need help finding a code. The would make it that when a person clicks an image the media player would play/stop/pause/mute... :S
Like powerpod.
I've been looking around but I haven't found it yet.
Printable View
I need help finding a code. The would make it that when a person clicks an image the media player would play/stop/pause/mute... :S
Like powerpod.
I've been looking around but I haven't found it yet.
Use a custom radio player like powerpod... You want link to it pm me :)
I thought of that but i don't want it to look like powerpod.
just use some javascript to stop the radio and use the onclick function?
name your radio oject "radio" then..
HTML Code:<a href="#" onclick="radio.controls.stop()"><img src="PLAYBUTTON" border="0" /></a>
Too bad i don't know anything about javascript :(
But thanks it works :)
But why does it go back to the top of my page when i click on the image?
-Edit NVM I found it
If you dont want it to go to top of the page. Change the code for
it doesnt look as neat though :PHTML Code:<a href="javascript:radio.controls.stop()"><img src="PLAYBUTTON" border="0" /></a>
Cool, didn't know you could do this with JS. Nice tip!