jquery mobile collapsible-set perform jquery function on collapse

前端 未结 1 1368
梦谈多话
梦谈多话 2021-01-25 09:55

I\'m trying to implement an action on collapse/expand of jquery mobile collapsible-set. I\'m running jquery.mobile-1.4.4 and jquery-1.11.0.

I\'ve posted code on fiddle t

1条回答
  •  孤城傲影
    2021-01-25 10:25

    As of jQuery Mobile 1.4, expand and collapse events are deprecated and replaced with collapsibleexpand and collapsiblecollapse.

    $(document).on("pagecreate", "#pageID", function () {
       $(".selector").on("collapsibleexpand collapsiblecollapse", function () {
          /* code */
       });
    });
    

    Demo

    0 讨论(0)
提交回复
热议问题