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
.dragCheck() doesn't return self (the jQuery object) so it's not possible to chain calls:
$(':checkboxes').dragCheck().css(...); is not possible, but should be
$(':checkboxes').css().css(...); allows chaining (good example)
The text was updated successfully, but these errors were encountered:
Ok as I just saw it returns the DragCheck object... so this should be discussed first... and be solved the jQuery way then...
Sorry, something went wrong.
No branches or pull requests
.dragCheck() doesn't return self (the jQuery object) so it's not possible to chain calls:
$(':checkboxes').dragCheck().css(...); is not possible, but should be
$(':checkboxes').css().css(...); allows chaining (good example)
The text was updated successfully, but these errors were encountered: