JqueryUI Slider disable dragging and allow click on ui-slider

JqueryUI Slider disable dragging and allow click on ui-slider

My purpose is: Allow user click on slider and ui-handle will jump to that point and i can get value at that point, but do not allow user dragging the ui-handle. In my code below, i trying to return false at slide function of slider to prevent user drag but i can not click on slider, second method that i use is set disabled to true and then i can not do anything on slider. Please give me some suggestion. Thanks in advance !

  1.     $('.bar_blue', slide).slider({
  2.         step: 0.001,
  3.         max: 100,
  4.         start: function slider_start(event, ui) {
  5.             video.media.pause();
  6.         },
  7.         slide: function slider_slide(event, ui) {
  8.             return false; // this code not allow to dragging
  9.         },
  10.         stop: function slider_stop(event, ui) {
  11.             console.log('stop', ui.value); // but value here 
  12.             
  13.         },
  14.     });