I want to my web page to beep whenever a user exceeds the maximum character limit of my textarea.
feedback
|
|
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. | |||||||||||||||
feedback
|
|
Lots of medium-level (or inferior senior-level) developers here are over-generalizing. Yes, it's usually bad form to play audio. However, there are definitely some perfectly good production use cases for it. If somebody hasn't written enough apps to appreciate the need, they should say that they haven't come across a valid need, not instruct others that it is never appropriate for production apps just because they haven't come across the need in their vast, yet hereby proven-inadequate, experience. | |||
|
feedback
|
|
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. | |||||||||||||||||||||
feedback
|
|
What if the person is keying from another page and not looking at the screen? They'll never see the visual cue, and keep typing. They need a beep to stop. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
| |||
|
feedback
|
|
Using CSS you can do it if you add the following style to a tag, but you will need a
| ||||
|
feedback
|
|
You need a sound file to be served from somewhere. Here's the code from Scriptaculous's Sound library:
| |||
|
feedback
|
|
There's a way to call the actual system beep using JAVA.
| |||||
feedback
|