Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

alert with sound javascript

  if (x > 10) {
        var snd = new Audio('/alarm.mp3');
        snd.play();
        alert("Thank you!");
    }
Comment

javascript make alert sound

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" 
        content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
  
<body>
    <h1>Press the Button</h1>
  
    <button onclick="play()">Press Here!</button>
  
    <script>
        function play() {
            var audio = new Audio(
'https://media.geeksforgeeks.org/wp-content/uploads/20190531135120/beep.mp3');
            audio.play();
        }
    </script>
</body>
</html>
Comment

javascript make alert sound

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" 
        content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
  
<body>
    <h1>Press the Button</h1>
  
    <audio id="chatAudio" >
        <source src=
"https://media.geeksforgeeks.org/wp-content/uploads/20190531135120/beep.mp3" 
        type="audio/mpeg">
    </audio>
    <button onclick="play()">Press Here!</button>
   
    <script>
        var audio = document.getElementById('chatAudio');
        function play(){
            audio.play()
        }
    </script>
</body>
</html>
Comment

PREVIOUS NEXT
Code Example
Javascript :: test if multiple checkboxes are checked jquery 
Javascript :: refresh after delete in node 
Javascript :: react state hooks 
Javascript :: jquery close another dialog 
Javascript :: how to check if div is display none jquery 
Javascript :: react toastify dark mode 
Javascript :: JS retrieve a String’s size 
Javascript :: send event to child component angular 
Javascript :: REACt helmet og tags DONT WORK 
Javascript :: javascript alert on refresh 
Javascript :: how to sort an array of objects by a property value in javascript 
Javascript :: FATAL ERROR: MarkCompactCollector: young object promotion failed Allocation failed - JavaScript heap out of memory 
Javascript :: react native remove text from string 
Javascript :: date-and-time npm 
Javascript :: search text in div jquery 
Javascript :: javascript get date of the week 
Javascript :: vuejs react on route chagne 
Javascript :: jquery to br 
Javascript :: toastr.js notification for laravel 
Javascript :: reactjs javascript is mobile and desktop 
Javascript :: remove jquery 
Javascript :: How to swap two array elements in JavaScript 
Javascript :: axios timeout post example 
Javascript :: Axios FormData / not JSON 
Javascript :: how to change checkbox state in jquery 
Javascript :: how to auto refresh a div js 
Javascript :: remove current table row in jquery 
Javascript :: convert iso string to datetime javascript 
Javascript :: convert string in ethers.js 
Javascript :: Two different lockfiles found: package-lock.json and yarn.lock 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =