skip to Main Content

How can jQuery update HTML range?

I am making a music player and thus wants that as song plays, the progress bar gets modify accordingly using jquery. But my progress bar isnt getting updated. let myProgressBar = $('#myProgressBar'); audioElement.addEventListener('timeupdate',()=> { var progress= parseInt((audioElement.currentTime/audioElement.duration)*100); myProgressBar.value = progress;…

VIEW QUESTION

flutter Problem in vs code (Unable to Load asset)

I'm having a problem in flutter on vs code I imported the audioplayers here's my pubspec.yaml here's my homepage where I call the audio players import 'package:flutter/material.dart'; import 'package:audioplayers/audioplayers.dart'; class HomeScreen extends StatefulWidget { const HomeScreen({super.key}); @override State<HomeScreen> createState() =>…

VIEW QUESTION
Back To Top
Search