I am working on phonegap.jquery mobile,Angularjs mobile app
I want to triger a click once ihave clicked in some other icon. for that i am calling to a scope function, from their i have tried with $('#id').click(); But it is not working for me.
<div id="clickforsele" ng-click="selectdisplay()">
selectbox is
<select id="seleid"><options....... </select>
and the scope function is $scope.selectdisplay = function () {
$('#seleid').click();
}
it comes to scope function. But from thei i can not trigger the click. some one could help me?