Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Audio will not play on http://unabridged.merriam-webster.com/ when clicking link-how can I make it do so?

  • 6 odgovori
  • 1 ima ovaj problem
  • 7 views
  • Posljednji odgovor poslao cor-el

more options

Works fine on other browsers. Any help is much appreciated. I am a newbie to FireFox on my Mac.

Works fine on other browsers. Any help is much appreciated. I am a newbie to FireFox on my Mac.

All Replies (6)

more options

I went to http://unabridged.merriam-webster.com/

The 'Word of the Day' is pointillistic. The icon to say the word did not work for me.

I tried using four different web browsers. This could be a web site issue.

more options

Same problem.

more options

They should'n use <iframe src="wav"> but the <audio> tag instead. This is their mistake. Their code cannot work here.

more options

works on chrome and safari tho... ?

more options

Unfortunately, Merriam-Webster has not configured their website correctly. You may reach out to them to inform them of the issue. The issue can also be reported here: https://webcompat.com/

more options

In the past we did suggest using a bookmarklet to convert such a not working element to an audio tag.

javascript:(function(){
var cE='audio',eE=document.querySelectorAll('object,embed,iframe,audio');
for(i=0;E=eE[i];i++){
if(E.nodeName=='AUDIO'){E.play()}
else{
N=document.createElement(cE);
N.setAttribute('src',E.src||E.data);N.setAttribute('controls','');
N.setAttribute('autoplay','true');
E.parentNode.replaceChild(N,E)
}}
})()