Guest User

Untitled

a guest
Nov 15th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. function disableGoogleMapsTab(mapId) {
  2. $(mapId).find('a, button, div[tabindex], iframe').each(function(index, item) {
  3. item.setAttribute('tabindex', -1)
  4. })
  5. }
  6.  
  7. function enableGoogleMapsTab(mapId) {
  8. $(mapId).find('a, button, iframe').each(function(index, item) {
  9. item.removeAttribute('tabindex')
  10. })
  11. $(mapId).find('div [tabindex]').each(function(index, item) {
  12. item.setAttribute('tabindex', '0')
  13. })
  14. }
Add Comment
Please, Sign In to add comment