Customize wordpress register form wp_register()

15 years ago

wp_register display a link which allows the user to navigate to the registration page if not logged in and registration…

slideToggle example in jquery

15 years ago

Simple Javacript and HTML sample code for Jquery Toggle. In this blog whatever we are putting all are working and…

How to select first div and change data of its.

15 years ago

Most of the time we need to select first div that time we are just thinking what need to do.…

Multiple image uplode with fixed size / thumb image code

15 years ago

Please understand code. May be for fresher it will difficult but all the things is not possible.Note :1 . Path…

Onmouse hover event change color of textbox in jquery

15 years ago

<html><head><meta http-equiv="Content-type" content="text/html; charset=utf-8" /><title>jQuery test</title><style>body {font-family:arial;}</style><head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script> <script type="text/javascript"> //runs once page is loaded and ready to be manipulated    $(document).ready(function(){   …

difference between window.onload() and $(document).ready()

15 years ago

window.onload()the main difference is that document.ready() event gets called as soon as your DOM is loaded. It does not wait…

difference between remove() , hide(), empty.

15 years ago

empty It will remove all child element of selected divhide It will only hide from for.removeIt will remove selected element…

Uploading files with PHP

15 years ago

Upload an image or file to your server without using your FTP. Step 1: Open a web editor, then paste…

PHP send email with image attachment ?

15 years ago

How to send Email attachment using core php email function. Here we have created a new example where you can…

How to use constant variable?

15 years ago

Once you declared constant variable you just need to include that file and use variables<?phpDEFINE('PATH','http://www.google.com');echo PATH;?>output http://www.google.com

How to redirect first page to another page?

15 years ago

Here is a simple example how to use header() function to redirect page from one page to another. <?php//Redirect page…

how to store and retrieve array from Session variable using php?

15 years ago

Here is simple code to illustrate use of session to store array that can be used in other script.<?phpsession_start();$_SESSION['type'] =…