Tooltip Behavior

Support MB Tooltip Tooltip BehaviorResolved

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #37291
    Cynthia ConserCynthia Conser
    Participant

    I have added info tooltips to most of my field labels. However, when filling in a form and tabbing from field to field, the tab lands on the tooltips as well as on the field inputs. Is there a way to change this behavior so that the user can tab from field input to field input, skipping over the tooltips?

    #37292
    Long NguyenLong Nguyen
    Moderator

    Hi Cynthia,

    Currently, there is no option to change the attribute tabindex value to skip using tab button for the tooltip. You can use this JS code to do that

    jQuery(document).ready(function($) {
        $(".mb-tooltip").attr("tabindex", -1);
    });

    with this plugin https://wordpress.org/plugins/insert-headers-and-footers/

    #37342
    Cynthia ConserCynthia Conser
    Participant

    Thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.