0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WordPresを使用した際のJqueryの記述方法(Elementorのエレメントの追加で対応する場合)

Posted at

WordPresを使用した際のJqueryの記述方法

Elementorで一般エレメントの追加でJQueryをしたいときの記述方法

実行環境
  • Elementotを使用
方法

HTMLのエレメントをドラッグ&ドロップで画面に追加する。
そのご、HTMLを記述するコードに以下の形式でJQueryコードを記述する。

jquery
<script type="text/javascript">
(function($) {
    $(function() {
# ここから---------------------------------------------------------------------
        $('button').on('click',function(){
            alert("click");
        });         
# ここまでに好きなコードを記述する-----------------------------------------------
    });
})(jQuery);
</script>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?