Suppose I have one div like
- <div class="profilewidth cursorpointer childLoad" id="dynamicID" >
- lt;/div>
and in Jquey we have try like this
- $("body").delegate(".childLoad", "click", function () {
-
- });
But I want to pass one object from html to angularjs like we ng-click="fun(object)"
like this i want to pass value in delegate. How is this ????
I want to pass value like this in angularjs:
- $("body").delegate(".childLoad", "click", function (object) {
-
- });
Please reply fast