| <!doctype html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Example - example-example62-jquery</title> |
| |
| |
| <script src="../../components/jquery-1.10.2/jquery.js"></script> |
| <script src="../../../angular.js"></script> |
| <script src="script.js"></script> |
| |
| |
| |
| </head> |
| <body ng-app=""> |
| <div ng-controller="LogCtrl"> |
| <p>Reload this page with open console, enter text and hit the log button...</p> |
| Message: |
| <input type="text" ng-model="message"/> |
| <button ng-click="$log.log(message)">log</button> |
| <button ng-click="$log.warn(message)">warn</button> |
| <button ng-click="$log.info(message)">info</button> |
| <button ng-click="$log.error(message)">error</button> |
| </div> |
| </body> |
| </html> |