
Search In
To make JSON call we use “getJSON” method. Here is the syntax and description of it.
Syntax :
$.getJSON( url, [data], [callback] )
Description
1. url : It is URL where the request is send and which emits out JSON.
2. data : this parameter he
Here I have created Popup function , Popup function can be used to display menu item list, anchor text and listitem etc. In the below example when we clicked on menu button the popup will be open and if we click outside the popup it will disappears.
To use a background worker class in C#
1- Create an Instance of Background Class
BackgroundWorker bgw=new BackgroundWorker();
2- Create an event handler for the background worker's DoWork event
private void backgroundWorker_DoWork(object s
You just follow 2 steps to create a fancy menu with css.
Step 1:- you can crate a menu with the help of input tag and label tag, for example:-
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Hey guys, Welcome back to "Part 2 - Types on Mask in Photoshop".
OK Let's get started.
Question 1: How to Apply Layer Mask?
Well, It is simple.
I have an Image on layer 1 and on the next layer i have written my name "ABHISHEK".
I want the image t
A code snippet for getting current location on browser using google map API
Here we are calling getLocation() on load of the page
getLocation();
function getLocation()
{
if (navigator.geolocation)
{
navigator.geol
Hello Readers,
Today's topic is how to create a SVG?- Every shapes in SVG are based on coordinates (x and y axis). So if you want to edit ,create and script, you have to know about coordinates.
SVG has pre define shape like,
1) Circle
2) R
Sometime we need to migrate theme from one installation another. We can do this easily by following the below steps:
1). Create a new theme in Liferay 6.2 using this command.
./create.sh themename “ThemeDisplayName”
themename = The Name of your
HML5 Canvas Curves
1. Canvas Arc
To create an arc with HTML5 Canvas, we can use the arc() method. Arcs is define by a center point, a radius, a starting angle, an ending angle, and the drawing direction clockwise or anticlockwise.
HTML
<ca
Android provides some features to store and retrieve data of an application. SharedPreferences is one of the simple and easy way among them.We save data in key, value pair.
We have to call getSharedPreferences(), It returns the SharedPrefrence ins
