I want to my web page to beep whenever a user exceeds the maximum character limit of my textarea.

link|improve this question

1  
why tag this asp.net? server language has nothing to do with client functionality. – SpliFF May 18 '09 at 18:42
15  
Ewwwww don't play sounds, use a visual cue like red text or background or something. It's less annoying to the user, more likely to be effective (since many users don't have speakers at work, or mute, etc), and easier to implement. – Daniel Schaffer May 18 '09 at 18:43
10  
Why not use <blink> with a warning message instead? – Mike Robinson May 18 '09 at 18:48
Dupe: stackoverflow.com/questions/187098/… – altCognito May 18 '09 at 18:54
15  
For those wondering why you would do this ... in corporate environments it is common for a user to be keying blind (i.e. without looking at the screen). Non-obtrusive audio cues can help facilitate fast keyboard-only data entry. – Andrew Jul 23 '10 at 6:27
show 1 more comment
feedback

9 Answers

up vote 35 down vote accepted

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).

<script>
function PlaySound(soundObj) {
  var sound = document.getElementById(soundObj);
  sound.Play();
}
</script>

<embed src="success.wav" autostart="false" width="0" height="0" id="sound1"
enablejavascript="true">

You would then call it from JavaScript code as such:

PlaySound("sound1");

This should do exactly what you want - you'll just need to find/create the beep sound yourself, which should be trivial.

link|improve this answer
5  
Note: Although I've given the direct answer, I do believe Mark Hurd is offering sound advice regarding not annoying the user. – Noldorin May 18 '09 at 18:55
1  
+1 and -1 for answering the question :) – Mike Robinson May 18 '09 at 19:05
You may also experience browser compatibility issues with this style of playing sound. PLaying sound from a browser in a cross-browser compatible way is hard! – krosenvold May 18 '09 at 19:19
Nicely answered! – 999 May 18 '09 at 19:24
Isn't it possible to have access to the PC Speaker? (from which we hear BIOS beeps) – Nirmal Jan 29 '10 at 4:02
show 1 more comment
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.

link|improve this answer
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.

link|improve this answer
24  
This isn't the answer. This is advice, but in no way answers the question "How to make a beep in Javascript". – seanmonstar May 18 '09 at 19:53
2  
Thank you for the advice. I took your suggestion and created a character count instead of a beep. The outcome was worth the abuse. – Slim May 19 '09 at 13:22
2  
Is it really such a bad thing to make web forms work like windows forms? Windows forms frequently play a sound on an error condition. – quillbreaker Dec 24 '09 at 18:37
5  
There are some very good situations for using a beep. For example, what if the input is being entered by barcode? If the user is scanning many barcodes at a time (perhaps receiving items into inventory), they may not be looking at the screen at all. A beep will alert them to an invalid barcode, without forcing them to look up at the monitor every time they scan something. – limscoder Sep 9 '10 at 19:57
2  
"Anything that automatically makes noise and gives you no control has no place in the browser" is the salient point. Let this be a user option! I like beeps, you don't: let's both get what we want! – bnieland Feb 16 '11 at 0:19
show 3 more comments
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.

link|improve this answer
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.

link|improve this answer
feedback

Sort of a Dupe..

link|improve this answer
Umn, voted down? It's the same question. He's right. – altCognito May 18 '09 at 18:54
feedback

Using CSS you can do it if you add the following style to a tag, but you will need a wav file:

<style type="text/css">
        {cue: url("beep.wav") }
</style>

var body=document.getElementByTagName("body");
body.className=body.className + " " + "beep";
link|improve this answer
feedback

You need a sound file to be served from somewhere. Here's the code from Scriptaculous's Sound library:

//Default:
<embed style="height:0" id="sound_#{track}_#{id}" src="#{url}" loop="false" autostart="true" hidden="true"/>

//For Gecko:
if(Prototype.Browser.Gecko && navigator.userAgent.indexOf("Win") > 0){
  if(navigator.plugins && $A(navigator.plugins).detect(function(p){ return p.name.indexOf('QuickTime') != -1 }))
    Sound.template = new Template('<object id="sound_#{track}_#{id}" width="0" height="0" type="audio/mpeg" data="#{url}"/>');
  else if(navigator.plugins && $A(navigator.plugins).detect(function(p){ return p.name.indexOf('Windows Media') != -1 }))
    Sound.template = new Template('<object id="sound_#{track}_#{id}" type="application/x-mplayer2" data="#{url}"></object>');
  else if(navigator.plugins && $A(navigator.plugins).detect(function(p){ return p.name.indexOf('RealPlayer') != -1 }))
    Sound.template = new Template('<embed type="audio/x-pn-realaudio-plugin" style="height:0" id="sound_#{track}_#{id}" src="#{url}" loop="false" autostart="true" hidden="true"/>');
  else
    Sound.play = function(){};
}
link|improve this answer
feedback

There's a way to call the actual system beep using JAVA.

function beep() { java.awt.Toolkit.getDefaultToolkit().beep(); }
link|improve this answer
2  
The question doesn't ask for Java solutions. – j08691 Mar 13 at 19:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.