1.0.0 • Published 5 years ago

angular-ng-load v1.0.0

Weekly downloads
15
License
MIT
Repository
github
Last release
5 years ago

ng-load

ng-load is implementation of javascript's on-load event in angular js.

About

You may wish to use callback function on DOM is loaded same like onload event in javascript. ng-load will provide custom callback once DOM is loaded. Implementation of OnLoad event of javascript in Angular JS. Internally ng-load calls onload event so this directive can work with almost every DOM element like div, a, iframe, body, image etc.

Requirements

  • Angular js.

Getting Started

Include angular-load.min.js after angular.js.

example:

JS
	// include the `ngLoad` module
	var app = angular.module('myApp', ['ngLoad']);
	app.controller('myCtrl', function($scope) {
		$scope.testCallbackFunction = function() {
		  //TODO : Things to do once Element is loaded
		};

	});  
 
 HTML 
  <div ng-app='myApp' ng-controller='myCtrl'> 
      <iframe src="test.html" ng-load callback="testCallbackFunction()">  
  </div>

Contributing

Contributors are welcome. I am interested in suggestions for new features or improvements. Please get in touch.