I’m trying to use this tutorial to create a jQuery Slider with a custom handle:
http://papermashup.com/jquery-ui-slider/
On their demo page it works, but when I do the same thing it doesn’t display the custom handle image. It displays everything else correctly. Here’s the page I am using (you can see that the images exist on the server and should show):
http://jovansfreelance.com/stripe_pay/
This is the image that should be showing as the slider handle:
http://jovansfreelance.com/stripe_pay/images/slider-button.png
What am I doing wrong?
You forgot to wrap your code in a document.ready() call. The way your code is now, it is trying to execute before the elements exist in the page.
Try: