
Search In
Hello all,
When we create our UI design of HTML page, and we want to put specific div at the center of the page, we can do that with the help of CSS (Cascading Style Sheet). we can set the width of the div to a certain pixel and set the margin attri
To update sequence to number and checks from the value encoded in the wizard, first we have to go in .py file (Python file) After that we have to decide where we want to update the sequence to number and then write python code to that field from star
Use the following codes to count the character dynamically enter by user in the input tag.
HTML Code:-insert the following code in the form tag.
<input type="text" maxlength="12" />
<span>0</span>/12
jQuery Code:insert the follo
Hello Reader's! if you want to short a given string on fixed number of chars then php offers you many ways. Below is one of them, you can use this code for the same.
Lets see the example below:-
$sting_given = "1234567890134667896abcdtiABCDEFGHIJK
Using few lines of code we can add one image over another image. It is useful when we need to add a watermark image over an image.
-(UIImage *)imageWithWaterMarkImage :(UIImage*)topImage originalImage:(UIImage*)image
{
CGSize size = image.size;
In Android you can also use vibration method of android. There is an abstract class named Vibrator that helps you to implement vibrations in your own applications.
method vibrate will vibrate with a given pattern.
public class MainActivityVibrator
Values of less variable depends on the scope. If the value is not specified in the specific scope, LESS will look for it in upper blocks until it finds the nearest declaration.
Example:-
@text-color: #000000;
ul{
@text-color: #fff;
background-
Nesting is used to style your structure of the stylesheet that matches the HTML structure of the page to reduce the chance of conflicts.
Example:-
ul{
background-color: #03A9F4;
padding: 10px;
list-style: none;
li{
background-color: #f
Cookies are basically small text files that is stored in browser and it is use for tracking purpose.
Cookies are also use for remember me functionalities.
Setting Cookies with PHP
setcookie(name, value, expire, path, domain, security);
For Examp
Hello Everyone, today we will learn about "How to Check Unique visitor counter in your website".
There are many ways to check the user list who navigate your website, like Google Analytics Plugin in Wordpress etc.
With Google Analytics Plugin and c
