Categories
AngularJS

AngularJS First Application

An AngularJS First Application consists of following three important parts: ng-app : Directive that defines and links an AngularJS application to HTML. ng-model : Directive that binds the values of AngularJS application data to HTML input controls. ng-bind : Directive that binds the AngularJS Application data to HTML tags. First Application Steps: Add javascript framework […]

Categories
Javascript Php

Styled Google Map

Styled maps allow you to customize or change the style of the standard Google base maps, changing the user interface of such elements as roads, parks, and built-up areas etc. For api key sign up here: https://developers.google.com/maps/documentation/javascript/tutorial#api_key After you sign up, use the following script tag:<script type=”text/javascript” src=”https://maps.googleapis.com/maps/api/js?key=YOUR_GOOGLE_API_KEY&sensor=false”></script>because in live website you will need to […]

Categories
jQuery

CSS Hooks – jQuery

jQuery lets you a way to write down your own custom CSS methods. CSS Hooks directly into jQuery to override custom properties. I think you have written so many time in your website for different location. Isn’t it? $(“div”).css(“margin”, “0px 1px 2px 3px”); But using CSS Hooks, you can easily add the above code to […]

Categories
Javascript jQuery

Tips and Tricks for powerful developers

Here we will discuss few jQuery techniques and Tricks for powerful developers which is useful for library. So starts with a few tips about performance & continue with little introductions to some of the jQuery library’s more features. Use selectors as simple You should try to optimize the way you get elements not to force […]

Categories
AngularJS

MVC Architecture of AngularJS

MVC Architecture of AngularJS is a software design pattern for developing web applications. MVC Architecture consists of the following three parts: The Model Model is the lowest level of the pattern responsible for managing application data. It responds to the request which gets from view and to the instructions from controller to update itself. The […]

Categories
AngularJS

Environment Setup of AngularJS

AngularJS is distributed and can be added to a web page using a script tag. So let’s write a simple example using AngularJS library and create an HTML file firstangularjs.html as below: <!doctype html> <html> <head> <script src=”https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.17/angular.min.js”></script> </head> <body ng-app=”myapp”> <div ng-controller=”WebController” > <h2>Welcome {{myweb.title}}! How are you feeling?</h2> </div> <script> var myapp = […]

Categories
AngularJS

What is AngularJS?

What is AngularJS? AngularJS, an open source web application framework, was originally developed in 2009. It was discovered by Misko Hevery and Adam Abrons. Currently it is maintained by Google. AngularJS definition as put by its official documentation is as follows:AngularJS is a structural framework for dynamic web apps. It lets you use HTML as […]

Categories
Javascript Php Programming

How to Configure Visual Styles in CodeLobster PHP IDE?

What makes colors wonderful to the human eye is their ability to stimulate and relax the mind. This article will explore two tools that are used in web development to enhance the color effect. The two tools are CodeLobster PHP IDE that provides color scheme customization and individual visual styles for the program. When you […]

Categories
Feature Story Javascript

JavaScript Tips and Best Coding Practices

JavaScript is one of the most widely used programming languages for web development. It’s the most popular and highly paid language of 2020, and the demand for it is only likely to increase in the coming years. If you want to know more about the most popular coding languages including JavaScript, follow the link: https://litslink.com/blog/top10-important-coding-languages-2020 […]

Categories
AngularJS Javascript Programming

Top AngularJS Tips and Tricks for Your Web Development

AngularJS is one of the most popular JavaScript for front end development. It’s created and upheld by Google, and it enables developers to make quick, efficient client-side web applications. Some long-lasting JavaScript developer discover some AngularJS developer functionality and syntax new and somewhat challenging, particularly those new to the Model-View-Controller (MVC) structure, which can be […]