
Search In
Hello Reader !
Here is an example how to make a custom check box using simple script and css.
Script
$(document).ready(function(){
$('label').click(function(){
$(this).toggleClass('checkedN');
});
});
css
.checkedN {background-position:0
Hello Readers,
In this post we will discuss to get the current address, city name, state and country name from latitude/longitude value with the help of Cordova geolocation API and Google API.
To get the address from latitude/longitude values we n
In Javascript setDate ( ) method set the day of the Date object based on the beginning of the current month( or local time) .
Syntax
dateObj.setDate ( dayValue )
Parameters
dateObj -> It is mandatory and it is an integer which represent the
In wordpress you can create a admin page in admin section, to start this we have to first use hook function add_action() to create a menu in admin.
Before doing this we have to first create a directory under the plugins folder for now we create 'hell
In openerp first install board module and inherit object in your own module and write this function name createview and this function will check the user id and list of the board id in board.board object in openerp.
You can use this as given below.
addClass() method adds one or many methods or class to the paragraph or the element you are using,This method will not remove the class but it adds another class by using different attributes. Users and also add toggle function to it. It will added t
While providing user login in encrypted username and password you need to make sure that the credentials entered will first be encrypted and then matched into the database entries for providing login.
ALTER PROC [dbo].[uspAuthentica
Get a date after n days
-(NSDate*)getNextDayAfterDays:(int)numOfDays from:(NSDate*)date
{
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *offsetComponents = [[NSDateComponents a
Sometimes a user is required to input a date in the application for example to provide the date of birth. The programmer have to make sure that the date entered by the user is in correct format that can be used by the app or the server. If a numpad i
Queue is a kind of Abstract data structure that holds items in same order. Queue follow FIFO mechanism for operations like insertion and deletion of items.
Note :
- One end is always used to insert data called enqueue.
- Other end is always used t
