JAVA Tutorial
Download my slide below: Reference: w3schools
Download my slide below: Reference: w3schools
Example code in Angular JS to change the text Heading to input text field without losing 2-way data binding. <!DOCTYPE html><html><script src=”https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js”></script><body><div ng-app=”myApp” ng-controller=”myCtrl”><h1 ng-dblclick=”change()” ng-if=”!myv”>{{carname}}</h1><h1 ng-show=”myv”><input type=”text” ng-model=”carname”><button ng-click=”done()”>Done</button></h1></div><script>var app = angular.module(‘myApp’, []);app.controller(‘myCtrl’, function($scope) { $scope.carname = “Volvo”; $scope.change = function() { $scope.myv = … Continue readingANGULAR NG-SHOW AND CHANGE TEXT FIELD TO INPUT FIELD
We also can embedded Google Maps using iFrame. We don’t need to enabled the billing for this. To embed Google Maps using place name is quite easy as we can use iFrame tag and specify the place. Example of the code is below: <iframe src=”https://www.google.com/maps?q=gombak&output=embed” … Continue readingEmbed Google Maps using iframe – No need to add Billing
In the digital age, smartphone become a norm to most of people. The site needed to be responsive so that users can browse easily without the needed to zoom in. We have many different sizes of the phone including tablet. So to have responsiveness we … Continue readingCSS RESPONSIVENESS
Local Storage allow us to save key and value in a web browser. The data stored has no expiration date and will not be deleted even when the browser is closed. To remove the data is by simply using removeItem as below. Below are the … Continue readingPush array value in Localstorage
Google Maps is excellence way to show your location. Interactive map will allow your users to remember your location. To use Google Maps by Latitude and Longitude you just need to sign up for Google Developer. https://console.developers.google.com Go to the API Menu and search Google … Continue readingGoogle MAPS
To setup your cloudflare as your CDN (Content Delivery Network) is very easy in GoDaddy.For those who doesn’t know what the CDN is, it help to shorten the distance between your Web and your users. There a lot CDN in today word and one of … Continue readingCloudflare setup in godaddy
Cloud computing is the on demand availability of computer system resources, especially data storage and computing power, without direct active management by the user. I’m using AWS for about 3 years now. The reason I used Amazon Web Service is because it very easy to … Continue readingAWS increase volume storage
Anyone want example of AJAX Javascript. You can check out this link https://adisazizan.xyz/tutorial/ajax/ This example is using GET method. I created this for my quiz. Example 1 – Resource HTML Solution: Javascript Example 2 HTML + JAVASCRIPT There also tutorial on the AJAX POST. Below … Continue readingAJAX Example