ここに見られるように、jquery モバイル パネル イベントに関連付けることができないようです
http://jquerymobile.com/demos/1.3.0-rc.1/docs/panels/events.html
$(document).on('beforeopen', ".ui-panel", function() {
alert('open');
});
$(document).on('beforeclose', ".ui-panel", function() {
alert('close');
});
また
$(document).on('open', ".ui-panel", function() {
alert('open');
});
$(document).on('close', ".ui-panel", function() {
alert('close');
});
または、パネルでコンテキストを使用することもできます
$('.ui-panel',context).on('open', function() {
alert('opened');
});
context は現在のページの jquery オブジェクト変数です