MYSTERY ZILLION တွင် English သို့မဟုတ် Unicode ဖြင့်သာ အသုံးပြုခွင့်ရှိသည်။ ဇော်ဂျီ ၊ ဧရာ စသည်တို့ကို အသုံးပြုခွင့် မရှိ။ Unicode Guide ကို ဒီမှာ Download ချပါ။ Zawgyi to Unicode Converter
Don't share ebook or software if nobody request. You can find free book websites on here. We are welcome for discussion or asking question instead.
Detect slider change with Javascript and HTML
  • Vote Up0Vote Down KhantThuKhantThu
    Posts: 74Registered Users
    Hello everyone,
    I have a slider in html and it call the function "sliderchange" in javascript.

    input type="range" name="sliderA1" min="1" max="100" value=90 onchange="sliderchange(this.form)"


    I have many slider and all call that function. I would like to check which slider call that function. How should I do?

    I have tried this but it didn't work.
    function sliderchange(frm)
    {
    if(frm.sliderA1.value.onchange())
    frm.A1.value = frm.sliderA1.value

    }
    With regards,
  • 2 မှတ်ချက်များ sorted by
  • Vote Up0Vote Down saturngodsaturngod
    Posts: 4,596Administrators Accepted Answer
    why not directly ?


    <form name="test">
    <input type="range" name="sliderA1" min="1" max="100" value=90 onchange="sliderchange(this)">
    <input type="range" name="sliderA2" min="1" max="100" value=20 onchange="sliderchange(this)">
    </form>

    <script>
    function sliderchange(slider)
    {
    console.log("Name : " + slider.name +" Value : " + slider.value);
    }
    </script>

  • Vote Up0Vote Down KhantThuKhantThu
    Posts: 74Registered Users
    Thanks bro. I have about 9 sliders and I think it may be good to combine to 1 function :P But I have now done with separate function.
ဆွေးနွေးမေးမြန်းခြင်းစတင်ရန်

မင်္ဂလာပါ!

လှိုက်လှဲစွာကြိုဆိုပါသည်။ ယခု ပထမဆုံးအကြိမ် ရောက်ဖူးခြင်းဖြစ်ပါသလား? ဝင်ရောက် ဆွေးနွေး မေးမြန်းလိုပါလျှင် အောက်တွင်ဖော်ပြထားသော button များမှတဆင့် ဝင်ရောက် ဆွေးနွေးနိုင်သကဲ့သို့ အဖွဲ့ဝင်အသစ်အနေဖြင့်လည်း လျှောက်ထားနိုင်ပါတယ်။

Facebook ဖြင့်ဝင်ရန် Google ဖြင့်ဝင်ရောက်ရန် OpenID ဖြင့်ဝင်ရောက်ရန် Twitter ဖြင့်ဝင်ရောက်ရန်

အမျိုးအစားများ

In this Discussion

Tagged