I want to my web page to beep whenever a user exceeds the maximum character limit of my textarea.
|
1
|
|||||||||||||||||
|
|
|
It's not possible to do directly in JavaScript. You'll need to embed a short WAV file in the HTML, and then play that via code. Here is an example from this page (cleaned up slightly).
You would then call it from JavaScript code as such:
This should do exactly what you want - you'll just need to find/create the beep sound yourself, which should be trivial. |
||||||||||
|
|
|
Please don't play a sound! Use a character countdown (see the stack overflow comments) or visually change the form when the number of characters are exceeded along with displaying an error message. Not only will this be more prominent (who says the user has their speakers on, or is in an environment in which they can hear it?) but it will reduce some annoyance on your user's end. Anything that automatically makes noise and gives you no control has no place in the browser, IMHO. |
||||||||||
|
|
|
There's no crossbrowser way to achieve this with pure javascript. Instead you could use a small .wav file that you play using embed or object tags. |
||
|
|
|
|
Aaaaarrrrgh! The horror! Nevermind, use Flash to play the sound. |
||||
|
|
|
"Not only will this be more prominent (who says the user has their speakers on, or is in an environment in which they can hear it?) but it will reduce some annoyance on your user's end." Who says the user can see the screen? They may be blind or partially sighted and accessing the page through a screen reader in which case a sound cue may be more appropriate - which is indeed why I am searching for a robust and cross-browser way of playing certain sound files under very specific conditions to assist such users. I'm already using ASP.NET AJAX so I would prefer to use that library if I can. |
||
|
|
|
|
|
||
|
|
|
You need a sound file to be served from somewhere. Here's the code from Scriptaculous's Sound library:
|
||
|
|
|
|
A beep can be useful in debug situations. Being able to control which sound is played can quickly allow you to 'listen' to the work flow, so this solution is very useful. The point is clear however, this would not belong on a Production/Customer site. |
||
|
|
