0

Is there a good way to detect changes made by a script to the DOM ? Mutation observers don't seem to be available for Webkit on iOS.

000
  • 26,951
  • 10
  • 71
  • 101
alecail
  • 3,993
  • 4
  • 33
  • 52

1 Answers1

0

I think DOM mutation events are available in Mobile Safari but may not be forever since they are deprecated and replaced by mutation observers. Therefore I'd suggest using mutation observers where possible and falling back to DOM mutation events.

Tim Down
  • 318,141
  • 75
  • 454
  • 536