Skip to main content

Posts

Showing posts with the label AngularJs ng-mousedown events

AngularJs ng-mousedown events

The AngularJs ng-mousedown is use to specify the mousedown event features. The demo link click to view http://embed.plnkr.co/a1EUDA/preview The HTML code-sample: < button type ="button" ng-mousedown ="mousedown(IsDisplay)"> NG-MOUSEDOWN </ button > The AngularJs code-sample: var app = angular.module( 'myApp' , []); app.controller( 'ngMousedownCtrl' , [ "$scope" , function ($scope) {     $scope.domain = "code-sample.com" ;     $scope.IsDisplay = false ;     $scope.mousedown = function (clicked) {         alert( "My mousedown function is called." );         $scope.IsDisplay = clicked == true ? false : true ;     }; }]); The AngularJs and HTML code-sample: < !DOCTYPE html > < html > < head >     < meta charset ="utf-8" />     < t...