Hello, I have the following code in my opinion:
<div data-bind="foreach: Elements"> <div data-bind="attr:{id: id}"> <img data-bind="attr:{src: ImageSource}" /> <p data-bind="text: Name"></p> </div> </div>
But for each new element, I want to add jQuery effet, for example:
$("#draggable").draggable();
Is there a way to sign an event that occurs after an item is added to this list?
Eugene
source share