Click here to Skip to main content
15,922,696 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I put this in my webiste
HTML
<audio src="jdc.mp3" accesskey="m"> 

but it doesn't start when i press alt+m. I can play it if i remove the accesskey tag and add controls. Am i doing something wrong?
Posted
Updated 23-Nov-15 6:47am
v2

1 solution

Try this
HTML
<audio controls="" accesskey="m">
  <source src="jdc.mp3" type="audio/mpeg">
</source></audio>


But pressing Alt+"m" will focus the player only. You still need to press the space bar for play/pause.
Again, the key combination varies from browser to browser and OS to OS.
Check the list here-
HTML accesskey Attribute[^]

However, you can write small javascript/JQuery code to do what you want.
Check following link for further details-
HotKey to Play/Pause HTML5 Music Player[^]

Hope, it helps :)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900