Hello, we have an action link button that when pressed sends an email. I’d like add a script that when the action link button is pressed, a sound is made. Below is a script that @Sunny_Singla created for when a user presses submit button a sound is played.
$(document).on(‘knack-form-submit.view_21’, function (event, view, data) { // Login Page to Redirect
var audio = new Audio(‘https://cdn.pixabay.com/download/audio/2022/03/16/audio_492840191c.mp3’);
audio.play();
});
I’ve tried to implement this script into the action link button with various changes with NO LUCK.
Any an all help is appreciated… JON