Link to home
Start Free TrialLog in
Avatar of tigriswoods
tigriswoods

asked on

Recommendation CSS for buttons containing confirm

I'm looking for suggestions on a way to style buttons that have OnClientClick confirm - to have a visual hint - such that the user can see the style and know that they will be prompted to OK/Cancel when they click the button.  I can't determine if there is a standard practice for a visual hint like that. Has anyone implemented buttons in such as way? If so, can you please provide some guidance or insight?

Thank you.
Avatar of LZ1
LZ1
Flag of United States of America image

You could just use a simple javascript or jquery tooltip.

http://twitter.github.com/bootstrap/javascript.html#tooltips
Avatar of tigriswoods
tigriswoods

ASKER

LZ1 - thank you for your quick response.  I do already use tooltips, but they does not convey the visual hint that I would like, via the button style, that the button will be one that provides a confirm button.  I'm just wondering if there is a standard practice or styling convention on the button itself that anyone uses now.
ASKER CERTIFIED SOLUTION
Avatar of LZ1
LZ1
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
There is no convention that I am aware of.  The user is not going to know intuitively what the style difference means.  If it is that important that put a not next to the button or rely on your tooltips.

Cd&
I doubt there's any such industry-wide standard nor have I come across any such visual layout.
As mentioned by LZ1 tooltip is on option or some explicit text on the button itself, if possible.
Or you can use same site-wide layout for such button and eventually your returning users will get it what it is.
Depending on your site, you can explicitly mention on your page or somewhere on faq or some other place that 'that particular type of button' will pop-up confirmation.
Ok, thanks for the feedback.  I had been wondering about that for a while, so thought I'd ask.