1

ページの準備ができているテキストエリアにtinymceを追加するスクリプトがあります。jquery を使用してこのコードを削除するにはどうすればよいですか。このコードはページに変更を加えません。(コア ファイルからこれを変更することはできません) 次のようなコードを削除する必要があります。

$(document).ready(function () {

   jQuery('#join_form [name="DescriptionMe[0]"]').tinymce({

       plugins: 'autolink,autosave,lists,inlinepopups,paste,fullscreen',
       width: '100%',
       height: '150',
       theme: 'advanced',
       theme_advanced_buttons1: 'bold,italic,underline,removeformat,|,bullist,numlist,|,justifyleft,justifycenter,justifyright,|,blockquote,|,link,unlink,image',
       theme_advanced_buttons2: '',
       theme_advanced_buttons3: '',
       theme_advanced_toolbar_location: 'top',
       theme_advanced_toolbar_align: 'left',
       theme_advanced_statusbar_location: 'none',

       document_base_url: 'http://website.com/demo/d7s/',
       remove_script_host: false,
       relative_urls: false,
       script_url: 'http://website.com/demo/d7s/plugins/tiny_mce/tiny_mce_gzip.php',
       skin: 'default',
       language: 'en',
       content_css: 'http://website.com/demo/d7s/templates/base/css/editor.css',
       gecko_spellcheck: true,
       entity_encoding: 'raw',
       verify_html: false
   });

 });

 $(document).ready(function () {

         jQuery('#join_form [name="DescriptionMe[1]"]').tinymce({

               plugins: 'autolink,autosave,lists,inlinepopups,paste,fullscreen',
                        width: '100%',
                        height: '150',
                        theme: 'advanced',
                        theme_advanced_buttons1: 'bold,italic,underline,removeformat,|,bullist,numlist,|,justifyleft,justifycenter,justifyright,|,blockquote,|,link,unlink,image',
                        theme_advanced_buttons2: '',
                        theme_advanced_buttons3: '',
                        theme_advanced_toolbar_location: 'top',
                        theme_advanced_toolbar_align: 'left',
                        theme_advanced_statusbar_location: 'none',

                        document_base_url: 'http:/ / website.com / demo / d7s / ',
                        remove_script_host: false,
                        relative_urls: false,
                        script_url: '
   http: //website.com/demo/d7s/plugins/tiny_mce/tiny_mce_gzip.php',
   skin: 'default',
   language: 'en',
   content_css: 'http://website.com/d7s/templates/base/css/editor.css',
   gecko_spellcheck: true,
   entity_encoding: 'raw',
   verify_html: false
  });

});
4

2 に答える 2