How to create vertical menu with sub menu using CSS
HTML Part: <div id="menuwrapper"> <ul> <li><a href="#">Home</a></li> <li><a href="#">Products</a> <ul> …
HTML Part: <div id="menuwrapper"> <ul> <li><a href="#">Home</a></li> <li><a href="#">Products</a> <ul> …
Add Network information cordova plugin Syntax: cordova plugin add cordova-plugin-network-information // Check for network connection if(window.Connection) { if(navigator.connection.type == Connection.NONE) { $ionicPopup.confirm({ title: 'No Internet Connection', content: 'Please check…
Show Full Date: (Method 1) $scope.currDate = new Date(); alert($scope.currDate ) Output like this: Wed Aug 16 2017 12:11:06 GMT+0530 (India Standard Time) Show Full Date: (Method 2) var date…
// Simple GET request example: $http({ method: 'GET', url: '/someUrl' }).then(function successCallback(response) { // this callback will be called asynchronously // when the response…
Ionic 3 CLI Syntax Check the installed version of Node.js: npm version Check the installed version of Git: git --version Check ionic version Details: ionic info Check Java version: java -version…
Ionic Version 3 Step 1: Installing Node.js Download the installer for Node.js 6 or greater and then proceed to install the Ionic CLI and Cordova for native app development: Download…
Ionic Version 3 Build your app for testing: ionic cordova run android ionic cordova build android --verbose PUBLISH:: 1>>Remove console ionic cordova plugin rm cordova-plugin-console 2>>Release: This will generate a…
On the past few days Ive been working on a PHP spamd client, and I think it is somewhat usable for now since it already implements all of the protocol commands. This is…
Port Forwarding In order to be reached by the world, you should tell your gateway where is your web server. All incoming request on port 80 should be redirected to…
Just Add the following short code in your theme function.php // Enable shortcodes in text widgetsadd_filter('widget_text','do_shortcode'); Now check it ... Don’t auto-p wrap shortcodes that stand alone use this like…