Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

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

  • 6 απαντήσεις
  • 1 έχει αυτό το πρόβλημα
  • 7 προβολές
  • Τελευταία απάντηση από 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.

Όλες οι απαντήσεις (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

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)
}}
})()