skip to Main Content

Change font awesome icon when clicked button – Html

I'm using this code to play/pause background audio. <div class="music-box"> <audio id="losAudio" src="images/honcayeu.mp3"></audio> <button id="btn_playPause"> <i class="fa fa-music"></i> </button> </div> var losAudio = document.getElementById("losAudio"); function losAudio_playPause() { var isPaused = losAudio.paused; losAudio[isPaused ? "play" : "pause"](); } document.getElementById("btn_playPause").addEventListener("click",losAudio_playPause); But now…

VIEW QUESTION

Radio Button Flutter

I am getting this error when i use Radio Button. int _value = 1; error: A value of type 'int?' can't be assigned to a variable of type 'int'. (invalid_assignment at [coacum_01] lib/match_screen.dart:450) Honestly i don't know what to do,…

VIEW QUESTION
Back To Top
Search