Dear Logan,
This is what we have found out:
This is 3d party library bug (JQM beginning from 1.1.1 version).
This issue was raised on JQM bug tracker, but developers did not fix it.
https://github.com/jquery/jquery-mobi...
As a workaround you can delete preevent.stopPropagation();/pre
at 6849 line in jQuery Mobile 1.4.4 js un-minified file.
pre this._on( ui.heading, {
"tap": function() {
ui.heading.find( "a" ).first().addClass( $.mobile.activeBtnClass );
},
Code: Select all
"click": function( event ) {
this._handleExpandCollapse( !ui.heading.hasClass( "ui-collapsible-heading-collapsed" ) );
event.preventDefault();
event.stopPropagation();
}
}); /pre
But this can lead to new problems here, but this will work.