Disable JQM styling? Text-shadow problems...

Disable JQM styling? Text-shadow problems...

JQM is modifying a lot of elements: background, link shadows etc.
I've added:
  1. <script>
  2.             $(document).on('mobileinit', function () {
  3.                 $.mobile.ignoreContentEnabled = true;
  4.             });
  5.         </script>
And data-enhance="false" to my wrapper.
But it still drops shadows under my menu items...

How do I fully disable JQM besides for the elements I need it for?