Is there a way to retrieve the form ID of the current page using 'pageshow' in jQuery Mobile? I am currently able to obtain the ID of the active page by following this method.
$(document).on('pageshow', function () {
var id = $.mobile.activePage.attr('id');
});