Using jQuery-UI 1.7, I have integrated slider. Everything is working fine, But slider’s handles are overlapping each other while dragging. How can i prevent this.
You can see my ui slider here
Default view:

Overlapped view:

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can accomplish this by detecting an overlap in a
slideevent handler and returning false to prevent the slide from occurring. Example:Note that in this example the value of
20is simply hardcoded based on the width of the handle. Per your use case you’ll have to change that to whatever makes sense.