}); }); The getxxxx function fetches some data from server and updates a div. Now on each navigation to the page I see that its being called twice. I have tried with v1.1.1 and v1.2 Alpha and see the same result.
Anyone has any information on this issue? If this is intended can the 2 event calls be differentiated so that extra calls can be aborted...
Collapsible div added to another collapsible div inherits the events that are bound on the parent collapsible. Is there a way to stop that or am I doing something wrong.
Say for example I create a collapsible div and add another collapsible div to this div. Now if I bind collapse and expand events on the parent div the events are also fired for actions on the child div.
If I bind the expand and collapse on the parent the child also has these events and it causes problems. Is there are way to bind events only on the parent collapsible?
What I want to do is that when I expand the parent collapsible I want to fetch data and create the child collapsible and when I collapse the parent collapsible I want to remove all collapsibles within this parent. However these events are getting fired for all collapsibles not the parent.