Dynamic html page creation with jquery

后端 未结 3 437
醉梦人生
醉梦人生 2021-01-17 01:51

I will try to keep this post the shortest possible.

I am trying to create a jquery mobile web-page where , i import the photos and albums from a facebook page , usin

3条回答
  •  佛祖请我去吃肉
    2021-01-17 02:29

    Binding events to dynamically create items should be like this.

    $(document).on('event', '.element', function () { magic });
    

    Demo

    This code applies for all types of dynamic elements.

    Another important note, don't use .ready / $(function($) with jQuery Mobile. Use jQuery Mobile events.

提交回复
热议问题