We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if you use mootools Fx.Slide and Jquery UI slider together, there's a name collision between the two.
The problem is mentioned here: http://bugs.jqueryui.com/ticket/4168
The workaround is to remove the "slide" attribute before creating the sliders:
jQuery('div.slider').prop('slide',null).slider({...});
I tried it and it seemed to work. I've never worked with jQuery before, so I have no idea if this has any side effects, though.
The text was updated successfully, but these errors were encountered:
Fix issue #413 - Conflict with mootools slider
7ac0b28
No branches or pull requests
if you use mootools Fx.Slide and Jquery UI slider together, there's a name collision between the two.
The problem is mentioned here: http://bugs.jqueryui.com/ticket/4168
The workaround is to remove the "slide" attribute before creating the sliders:
jQuery('div.slider').prop('slide',null).slider({...});
I tried it and it seemed to work. I've never worked with jQuery before, so I have no idea if this has any side effects, though.
The text was updated successfully, but these errors were encountered: