コアのjQuerymobile関数を拡張したいと思います。JQMライブラリへのリンクは次のとおりです:http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.js
6574行目を変更したい
headerClose;
の中へ
headerClose = $( "<a>", {
"text": widget.options.closeText,
"href": "#",
"class": "ui-btn-left"
}).attr( "data-" + $.mobile.ns + "iconpos", "notext" ).attr( "data-" + $.mobile.ns + "icon", "delete" ).appendTo( header ).buttonMarkup();
JQMライブラリ内で直接変更するのではなく、カスタムjsファイルから変更したいと思います。必要最小限のコードで解決策を探しています。
前もって感謝します。