Jquery Knob Example - Jquery

How to use knob effect in jquery?

Snippet Code


  
Rate this page :
  [ 0 votes]

This sample code knob.js allows you to create multi touch virtual knobs in your web app.The simple program using knob.js is given below

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="http://cdn.crunchify.com/wp-content/uploads/code/knob.js"></script> <div align="center"> <input type="text" class="dial"> </div> <script> $(".dial").knob({ 'change' : function (v) { console.log(v); } }); </script>

Tags


Ask Questions

Ask Question