Call jquery button click on Angularjs

Manivannan Murugavel
1 min readJan 30, 2017

We are using jquery delegate method for button click on angularjs

Using on method or delegate method

$(document).on(“dblclick”, “#btnid”, function() {
$(this).remove();
});

Note:
dblclick is double click of button
btnid is id of button

--

--