<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>angularjs Archives -</title>
	<atom:link href="https://mitindia.in/tag/angularjs/feed/" rel="self" type="application/rss+xml" />
	<link>https://mitindia.in/tag/angularjs/</link>
	<description></description>
	<lastBuildDate>Sat, 23 Jun 2018 11:57:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://mitindia.in/wp-content/uploads/2023/03/cropped-android-chrome-512x512-1-32x32.png</url>
	<title>angularjs Archives -</title>
	<link>https://mitindia.in/tag/angularjs/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>AngularJS</title>
		<link>https://mitindia.in/angularjs/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Tue, 27 Mar 2018 06:03:28 +0000</pubDate>
				<category><![CDATA[AngularJS]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[angularjs]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[javascript]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=865</guid>

					<description><![CDATA[<p>What is AngularJS? AngularJS is a front-end open source javascript based framework. AngularJS is maintained and developed by Google and its community of developers. Angular JS is written in javascript and its a cross-platform browser supporting tool. Here the more focus is on HTML web apps with best user experience across different screen sizes (Mobile/Desktop/Projector [&#8230;]</p>
<p>The post <a href="https://mitindia.in/angularjs/">AngularJS</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3><span style="color: #008080;">What is AngularJS?<img decoding="async" class=" wp-image-866 alignright" src="http://www.mitindia.in/wp-content/uploads/2018/03/pic_angular.jpg" alt="AngularJS" width="181" height="181" srcset="https://mitindia.in/wp-content/uploads/2018/03/pic_angular.jpg 225w, https://mitindia.in/wp-content/uploads/2018/03/pic_angular-150x150.jpg 150w" sizes="(max-width: 181px) 100vw, 181px" /></span></h3>
<p>AngularJS is a front-end open source javascript based framework.</p>
<p>AngularJS is maintained and developed by Google and its community of developers.</p>
<p>Angular JS is written in javascript and its a cross-platform browser supporting tool.</p>
<p>Here the more focus is on HTML web apps with best user experience across different screen sizes (Mobile/Desktop/Projector screens etc).</p>
<h4><span style="color: #ff0000;"><strong>Why ANGULARJS?</strong></span></h4>
<ul>
<li>Defines a number of ways to organize web application at the client side.</li>
<li>It enhances HTML by including directives, custom tags, attributes, expressions, templates within HTML.</li>
<li>It also encourages MVC design pattern</li>
<li>The code can be reused.</li>
<li>and its best for Single Page Apps (SPA)</li>
</ul>
<h4><span style="color: #ff0000;">Features of ANGULARJS</span></h4>
<ul>
<li>Declarative HTML approach</li>
<li>Easy Data Binding</li>
<li>Components can be reused</li>
<li>MVC Design Pattern</li>
<li>Dependency Injection</li>
<li>End to end Integration Testing</li>
<li>Routing</li>
<li>Templating</li>
<li>Modules</li>
<li>Services</li>
<li>Expressions</li>
<li>Filters</li>
<li>Directives</li>
<li>Form Validation</li>
<li>$scope, $http, $routeProvider</li>
</ul>
<h4><span style="color: #ff0000;"><strong>Directive</strong></span></h4>
<ul>
<li>The directives can be placed in element names, attributes, class names, as well as comments.<br />
Directives are a way to teach HTML new tricks.<br />
A directive is just a function which executes when the compiler encounters it in the DOM.<br />
&lt;input ng-model=&#8217;name&#8217;&gt;<br />
Custom Defined Directives<br />
&lt;span draggable&gt;Drag ME&lt;/span&gt;</li>
</ul>
<p><span style="color: #0000ff;"><strong>ng-app</strong></span><br />
Use this directive to auto-bootstrap an application.<br />
Only one ng-app directive can be used per HTML document<br />
&lt;html ng-app&gt;</p>
<p>&nbsp;</p>
<h4><span style="color: #0000ff;">Expressions</span></h4>
<p>Expressions are JavaScript-like code snippets that are usually placed in bindings such as {{<br />
expression }}<br />
&lt;body&gt;<br />
1+2={{1+2}}<br />
&lt;/body&gt;</p>
<p><strong>Example:</strong></p>
<blockquote><p>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;script src=&#8221;https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js&#8221;&gt;&lt;/script&gt;<br />
&lt;body&gt;<br />
&lt;h1&gt; AngularJS Text Entry change event &lt;/h1&gt;&lt;hr&gt;<br />
&lt;div ng-app=&#8221;&#8221;&gt;<br />
&lt;p&gt;Name: &lt;input type=&#8221;text&#8221; ng-model=&#8221;name&#8221;&gt;&lt;/p&gt;<br />
&lt;p ng-bind=&#8221;name&#8221;&gt;&lt;/p&gt;<br />
&lt;p&gt;SUM of two numbers: {{ 4 + 5 }}&lt;/p&gt;<br />
&lt;form name=&#8221;myForm&#8221;&gt;<br />
Email:<br />
&lt;input type=&#8221;email&#8221; name=&#8221;myAddress&#8221; ng-model=&#8221;text&#8221;&gt;<br />
&lt;span ng-show=&#8221;myForm.myAddress.$error.email&#8221;&gt;Not a valid e-mail address&lt;/span&gt;<br />
&lt;/form&gt;<br />
&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p></blockquote>
<p><a href="http://www.mitindia.in/artificial-intelligence/" target="_blank" rel="noopener">You can also read on AI here</a></p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fangularjs%2F&amp;linkname=AngularJS" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fangularjs%2F&amp;linkname=AngularJS" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fangularjs%2F&#038;title=AngularJS" data-a2a-url="https://mitindia.in/angularjs/" data-a2a-title="AngularJS"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/angularjs/">AngularJS</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
