Hi i'm looking help in jquery slider. Here i have slider: http://iatlaides.com/Web-2.0-properties.php 1. I need make possible to enter values in text box and when it is done slider going to exact place itself. 2. When you slide slider till 900 next in jump to 1100 not on 1000. need to resolve that. 3. when i change values in script it sometime freezes, you can try to click on slider with mouse 10-20 times and it will freeze. need to resolve that. 4. check all code to resolve any possible errors. No need design. I suppose this is easy task. Please send me your offer (price) to PM... Looking price around 10$ Thanks
Probably within your formatPrice() func in jquery.price.js file. So instead of this, function formatPrice(price) { var out = String(Math.round(price * 100) / 100), seg = out.split('.'); if (seg[1].length == 1) { return seg[0] + '.' + seg[1] + '0'; } else { return out; } } HTML: maybe you should use below: function formatPrice(price) { var out = String(Math.round(price * 100) / 100), seg = out.split('.'); if (seg.length == 1) { return seg[0] + '.0'; } else { return out; } } HTML: I'm not sure about the rest, sorry. jQuery's object-oriented syntax always brings me headache
So i have left only ''1. I need make possible to enter values in text box and when it is done slider going to exact place itself.'' I need like here http://jsfiddle.net/FPCRb/1/ but i do not need range but like in that fiddle enter value in text box and slider jump to exact place. I you can help me with that that would be awesome