ExpressionEngine® Answers is a question and answer site for administrators, end users, developers and designers for ExpressionEngine® CMS. Join them; it only takes a minute:

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

How to use angular js inside expression engine. Is there any article or tutorial is available for this. Thanks in advance.

share|improve this question
    
what's your use context? – Steven Grant Mar 18 at 16:00

I'm just now learning angular and plan to us it inside EE. I've tested it out on my local machine running ee3.05 and I didn't have any problems.

Here's the simple test page I used that worked:

<div ng-app=""> <p>Name: <input type="text" ng-model="name"></p> <p>You wrote: {{ name }}</p> </div>

Of course you'll need to use the angularJS script somewhere...here's their CDN link: https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0-rc.0/angular.min.js

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.