Bug Report: Ajax not working when Debug_Objects_Theme activated
-
Ajax not working when Theme information is selected. This is because of line 40 in class-theme.php
add_action( 'shutdown', array( $this, 'get_list_ids' ) );
which callsget_list_ids()
#182. and<script> var els = []; jQuery( '[id]' ).each( function () { els.push( this.id ); } ); els.sort(); var ids = '#' + els.join( '<br />#' ); jQuery( '#register_ids' ).html( ids ); </script>
gets added to ajax response which breaks ajax jquery code which is waiting for valid JSON response. Please advise me if there is a way to write jquery ajax code that will not break when markup is added to response or if the plugin is responsible?
Anyway thanks for great plugin that rocks!!!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Bug Report: Ajax not working when Debug_Objects_Theme activated’ is closed to new replies.