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
jquery-confirm version: v3.x.x
I'm submitting a ... (check one with "x") [ ] bug report [X] feature request [ ] support request
Current behavior: Is it possible to add a tooltip on the buttons ? This allows you to specify the action of the button, for example... Thank you !
The text was updated successfully, but these errors were encountered:
Just add .prop('title', that.buttons[key].title) after .prop('disabled', that.buttons[key].isDisabled) at about line 697 of the code
.prop('title', that.buttons[key].title)
.prop('disabled', that.buttons[key].isDisabled)
and add a title property to the button:
buttons: { confirm: { title: "Click here to confirm", btnClass: "btn-blue", action: function(){ $.alert("confirmed"); } },
Sorry, something went wrong.
Thank you ! :)
No branches or pull requests
jquery-confirm version:
v3.x.x
I'm submitting a ... (check one with "x")
[ ] bug report
[X] feature request
[ ] support request
Current behavior:
Is it possible to add a tooltip on the buttons ?
This allows you to specify the action of the button, for example...
Thank you !
The text was updated successfully, but these errors were encountered: