golden nugget online
10 TIPs - To Become a Good Developer/Programmer
Why Join
Become a member
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# golden nugget online
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
golden nugget online
ANSWERS
LEARN
NEWS
BLOGS
VIDEOS
INTERVIEW PREP
BOOKS
EVENTS
Live
JOBS
MORE
CAREER
MEMBERS
Angular
FOLLOW
Angular is an open-source JavaScript MVW Framework most suited to your application development. This page lists Angular tutorials, Angular golden nugget onlines, Angular jobs, Angular certification and Angular training.
Articles
(1539)
Blogs
(348)
Resources
(14)
Videos
(72)
News
(24)
Forums
Ask a question
New
Top
Hot
Popular
Filter
Article
Blogs
Videos
News
Interview
Recent Post
Learn About Asynchronous Service In Angular
In this article, you will learn about asynchronous service in angular.
Satheesh Elumalai
5 hrs 14 min ago
295
Circular Progress Bar In Angular
To create a Simple Circular progress bar using HTML, css in Angular.
Naveen S
May 03, 2022
414
ngModel In Angular With Example
In this article we will see ngModel and its example with code
Dhanush K
Apr 27, 2022
648
ngStyle In Angular
In this article we will see about [ngStyle] in Angular
Dhanush K
Apr 27, 2022
577
CURD Operation Using KendoUI In Angular With .NET Core API Using Dapper And Angular Routing
In this article, you will learn how to perform curd operation using kendoui in angular with .net core api using dapper and angular routing.
Abhishek Saini
Apr 07, 2022
1.8k
Search Engine Optimization in Angular Apps - MVP Show ft. Ankit Prajapati
Watch Ankit as he talks about Search Engine Optimization in Angular Apps.
C# golden nugget online Live
Oct 09, 2021
4.3k
Full Stack App using gRPC Web, Web API, SQL Server, Cosmos Db - Angular Virtual Conference 2021
This session in Angular Virtual Conference 2021 is about Full Stack App using gRPC Web, Web API, SQL Server, Cosmos Db.
C# golden nugget online Live
May 31, 2021
8.7k
Blazing fast E2E tests for Angular Apps with Cypress - Angular Virtual Conference 2021
This session in Angular Virtual Conference 2021 is about Blazing fast E2E tests for Angular Apps with Cypress
C# golden nugget online Live
May 31, 2021
2.5k
Deploying Angular Static Generated Apps on Azure Web App Service - Angular Virtual Conference 2021
This session in Angular Virtual Conference 2021 is about Deploying Angular Static Generated Apps on Azure Web App Service
C# golden nugget online Live
May 31, 2021
2.8k
Unit Testing in Angular - Angular Virtual Conference 2021
This session in Angular Virtual Conference 2021 is about "Unit Testing in Angular"
C# golden nugget online Live
May 31, 2021
2.8k
Angular 4.1.0 Now Available
Angular 4.1.0 Now Available
Mahesh Chand
May 02, 2017
5.4k
Angular 4: RC.1 — Feature-complete pre-release of 4.0
Angular 4 RC1 released
Dipal Choksi
Feb 28, 2017
2.5k
failed to load template angularjs
failed to load template angularjs
neeraj gandhi
May 23, 2016
2.3k
how to implement ck editor with angular js on mvc
hi.
i want to implement ck editor with angular js and bind the value with ng-model. but i am unable to get the value of editor in js.
maninder singh
May 18, 2016
689
& symol does not save angularjs with java application.
my application using angular js with java struts application. i am saving name with & symbol does not save.
posibabu elapana
May 17, 2016
517
Difference between these two?
Yesterday,I posted a question on AngularJS.
Then I found the solution but still I don't know the difference b/w these 2 code snippets
NOT WORKING:
<!DOCTYPE html>
<html >
<head>
<title>MyPage</title>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.5/angular.min.js">
</script>
</head>
<body ng-app>
{{8*9}}
<div ng-controller="mainController">
{{message}}
</div>
<script type="text/javascript">
var mainController=function($scope){
$scope.message="Hello";
};
</script>
</body>
</html>
Note: This is working fine when I watched a Video and the guy is using Plnkr.co to run this.
Working:
<!DOCTYPE html>
<html >
<head>
<title>MyPage</title>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.5/angular.min.js">
</script>
</head>
<body ng-app="myApp">
{{8*9}}
<div ng-controller="mainController">
{{message}}
</div>
<script type="text/javascript">
var app = angular.module("myApp", []);
app.controller("mainController", function($scope) {
$scope.message="Hello";
});
</script>
</body>
</html>
Please Someone explain it!!!!
Vipin Tyagi
May 13, 2016
697
My simple AngularJs code is not running!
Hi,
Sorry, I know this is too simple to run a simple Angular code.I also was working on some simple Angular code but this time, I'm stuck that what is happening with my code.
I tried many versions of ng but these are not worthy enough.
I used plnkr.co website to run my code as I'm staring Angular from very basics.
I used Sublime text editor but code is not working there.
I used external js file as a controller but no result
Here is the code:
<!DOCTYPE html>
<html >
<head>
<title>MyPage</title>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.5/angular.min.js">
</script>
<!-- <script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.1/jquery.min.js"></script> -->
<!-- <script type="text/javascript" src="jsfile.js"></script> -->
<!--<script type="text/javascript" src="app.js"></script>-->
<!-- <link rel="stylesheet" type="text/css" href="cssFileDemo.css"> -->
</head>
<body ng-app>
{{8*9}}
<div ng-controller="mainController">
{{message}}
</div>
<script type="text/javascript">
var mainController=function($scope){
$scope.message="Hello";
};
</script>
</body>
</html>
Plnkr Link:-
http://plnkr.co/edit/MLbp6UdAbzaF14xbyRsq?p=preview
Vipin Tyagi
May 12, 2016
645
What is scope in AngularJS?
Bhuvanesh Mohankumar
Apr 23, 2016
1.1k
1.1k
Is AngularJS a library, framework, plugin?
Rahul Chavan
Apr 19, 2016
682
682
Sorting, Paging And Filter Grid Using AngularJS
In this blog you will learn about sorting, paging and filter grid using AngularJS.
Rohit Mane
Mar 31, 2016
45.2k
What is Angularjs?
Akhilesh Pandit
Mar 19, 2016
515
515
Call Rest Service In AngularJS
This blog is intended to explain the concept of rest service call in AngularJS.
Gul Md Ershad
Feb 24, 2016
10.1k
AngularJS ngRepeat Directive
This blog is intended to explain the concept of AngularJS ng-repeat Directive.
Gul Md Ershad
Feb 24, 2016
20.3k
What is Angular JS?
Sumaiya Aftab
Feb 08, 2016
498
498
What is route navigation ?
Tuhin Paul
Jan 08, 2016
1.8k
1.8k
Angular 2 Beta Launched
The launch of the Angular 2 Beta would allow most developers to successfully build larger application by using Angular 2.
Tahseen Jamil
Dec 16, 2015
2.3k
Simplifying AngularJS in 60 Minutes by Dhananjay Kumar
A webinar Simplifying AngularJS in 60 Minutes presented by Dhananjay Kumar
Mahesh Chand
Mar 23, 2015
5k
Microsoft and Google Join Hands to Build Better Angular 2
The Angular community has been working with teams at Microsoft and Google to build a better Angular 2, the next version of Angular.js.
Mahesh Chand
Mar 06, 2015
5.3k
Display Multiple Data in a Table Format using Angular JS
In this blog you you will learn how to display Multiple Data in a Table Format using Angular JS.
Debasis Saha
Nov 13, 2014
6.3k
Host Angular App on Heroku
In this blog you will learn Host Angular App on Heroku.
Sumit Bajaj
Sep 12, 2014
5.5k
Moderators
Debasis Saha
India
Debasis Saha
India
Leaderboard
61.8k
Debasis Saha
6
61.8k
27.7m
42k
Anubhav Chaudhary
26
42k
17.8m
6.9k
Satheesh Elumalai
336
6.9k
1.1m
TRENDING UP
Angular Interview Questions
ASP.NET MVC 5 With AngularJS - Part One
Create Registration And Login Page Using Angular 7 And Web API
AngularJS Login Form With ASP.NET
Learn Angular 8 Step By Step in 10 Days – Day 1
How To Fix Error PS1 Can Not Be Loaded Because Running Scripts Is Disabled On This Syst...
What's New In Angular 8.0 And How To Upgrade To Angular 8
CRUD Operations In Angular 7 Using Web API
Angular 11 CRUD Application Using Web API With Material Design
Upload and download files using HTML5 File Uploader Control and AngularJS
Learn Angular 8 In 25 Days
Challenge yourself
Angular 13
E-Book Download
Get Certified
Stratis Blockchain Developer
Ask a question
*
Select a Category
.NET
.NET Core
.NET Standard
Active Directory
ADO.NET
Agile Development
AJAX
Alexa Skills
Algorithms in C#
Android
Angular
Architecture
ArcObject
Artificial Intelligence
ASP.NET
ASP.NET Core
Augmented Reality
Aurelia
AWS
Azure
Backbonejs
Big Data
BizTalk Server
Blazor
Blockchain
Bootstrap
Bot Framework
Business
C#
C# golden nugget online
C# Strings
C, C++, MFC
Career Advice
Careers and Jobs
Chapters
Cloud
COBOL.NET
Coding Best Practices
Cognitive Services
COM Interop
Compact Framework
Cortana Development
Cosmos DB
Cryptocurrency
Cryptography
Crystal Reports
CSS
Current Affairs
Custom Controls
Cyber Security
Data Mining
Data Science
Databases & DBA
Design Patterns & Practices
DevOps
DirectX
Dynamics CRM
Enterprise Development
Entity Framework
Error Zone
Exception Handling
Expression Studio
F#
Files, Directory, IO
Flutter
Games Programming
GDI+
GO
Google Cloud
Google Development
Graphics Design
Graphite Studio
Hardware
Health & Wellness
Hiring and Recruitment
HoloLens
How do I
HTML 5
Internet & Web
Internet of Things
Ionic
Java
Java and .NET
JavaScript
JQuery
JSON
JSP
Knockout
Kotlin
Leadership
Learn .NET
Learn iOS Programming
LightSwitch
LINQ
Machine Learning
Metaverse
Microsoft 365
Microsoft Office
Microsoft Phone
Microsoft Teams
Mobile Development
MongoDB
MySQL
NetBeans
Networking
NFT
NoCode LowCode
Node.js
Office Development
OOP/OOD
Open Source
Operating Systems
Oracle
Outsourcing
Philosophy
PHP
PostgreSQL
Power Apps
Power Automate
Power BI
Printing in C#
Products
Progressive Web Apps
Project Management
Public Speaking
Python
Q#
QlikView
Quantum Computing
R
React
React Native
Reports using C#
Robotics & Hardware
RPA
Ruby on Rails
Salesforce
Security
Servers
SharePoint
SignalR
Smart Devices
Software Testing
Solidity
SQL
SQL Server
Startups
Stratis Blockchain
Swift
Threading
Tools
TypeScript
Unity
UWP
Visual Basic .NET
Visual Studio
Vue.js
WCF
Wearables
Web Design
Web Development
Web Services
Web3
Windows
Windows Controls
Windows Forms
Windows PowerShell
Windows Services
Workflow Foundation
WPF
Xamarin
XAML
XML
XNA
XSharp
Upload Source Code:
Select only zip and rar file.