Welcome to the Tech Info section of X-Stream Info! Explore insightful articles, tutorials, and guides on cutting-edge technology trends and tools. From mastering platforms like Salesforce, WordPress, and PHP to understanding MySQL databases, domain registration, and hosting solutions, this is your ultimate resource hub.
Whether you’re a tech enthusiast, developer, or entrepreneur, our curated content will help you stay updated and make informed decisions. Dive into the world of innovation and take your tech knowledge to the next level!
<input id="xxInput" value="Some text.."> <button id="xxBtn" onclick="javascript:alert('Hello Sam!')">Button</button> <script> var input = document.getElementById("xxInput"); input.addEventListener("keyup", function(event) { event.preventDefault(); if (event.keyCode === 13) { …
<script type="text/javascript" src="https://code.jquery.com/jquery-2.2.3.js"></script> <script type="text/javascript"> navigator.geolocation.getCurrentPosition(success, error); function success(position) { var GEOCODING = 'https://maps.googleapis.com/maps/api/geocode/json?latlng=' + position.coords.latitude + '%2C' + position.coords.longitude + '&language=en';…
/* * Step 1. Add Link to My Account menu */ // Note the low hook priority, this should give to your other plugins the time to add their own…
It is the PHP class which allows you send emails. Very simple I think. Let me tell you about attachments and show some examples. So, first of all — if…
Step:1 Log into your Google Account, and then visit https://code.google.com/apis/console/. This will take you to a page that invites you to create a project with the Google API. Click on Create project….…
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…