Is Tabbing Behavior Affected When Used Inside An Iframe?
I'm currently attempting to tab through some react components that I've (text inputs, checkboxes, radio buttons, etc) implemented (using material-ui). Something I've discovered is
Solution 1:
With some help from above, I was able to figure out that when I render my react project inside the backbone project, some components such as my checkbox and radio buttons are wrapped inside a <span>
tag and in order for it to be able to be tabbed I had to add the tagIndex
attribute to it. Thanks everyone!
Post a Comment for "Is Tabbing Behavior Affected When Used Inside An Iframe?"