diff options
Diffstat (limited to 'ui/tooltip.js')
-rw-r--r-- | ui/tooltip.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/tooltip.js b/ui/tooltip.js index 841e877cc..e18f3e19d 100644 --- a/ui/tooltip.js +++ b/ui/tooltip.js @@ -287,6 +287,7 @@ $.widget( "ui.tooltip", { // Voiceover will sometimes re-read the entire log region's contents from the beginning this.liveRegion.children().hide(); a11yContent = $( "<div>" ).html( tooltip.find( ".ui-tooltip-content" ).html() ); + a11yContent.removeAttr( "name" ).find( "[name]" ).removeAttr( "name" ); a11yContent.removeAttr( "id" ).find( "[id]" ).removeAttr( "id" ); a11yContent.appendTo( this.liveRegion ); |