Heres a js fiddle
im trying to get the slider to jump to the correct position when I change the value in the input field. Iam using the Jquery UI slider.
You attach to the change
event of your input like so:
$("#storlek_testet").change(function() {
$("#storlekslider").slider("value", $(this).val());
});