SeekBar JavaScript (I)
✪ Luminous Organisation JavaScript SeekBar (I) Contents Chapter I What is SeekBar Calling a default SeekBar Setting minimum, maximum and value Getting progress Chapter II Setting progress programmatically Important lifecycle event: On Touch End Importance of SeekBar Wait a minute 1. What is SeekBar ❝A SeekBar is an extension of ProgressBar that adds a draggable thumb. The user can touch the thumb and drag left or right to set the current progress level❞ — Android Developers. You all know about ProgressBar which displays the current progress of any event. Usually ProgressBar displays progress at a percentage value, such as — downloading (87%) . Like ProgressBar, SeekBar has its current value, minimum and maximum range. We can say ProgressBar an output element, whereas SeekBar is an input element, where user can alter the value within a preset range. Here is an example of SeekBar. Its range is between 80 to 100 and value is 85 by default. Get Progress S...