Archive for August, 2011

HTML5 offers up some very interesting ways of arranging pages now.  In previous version of HTML we separated pages elements like the header, navigation, body, and footer by using a <div> tag.  At the time, <div> tags were considered by many to be the best development HTML had offered up in recent years.  <div> tags [...]

  • Share/Bookmark
Tags:

Today we will see how to make a simple popup with blocked background.It is made in Jquery.Here is the code below:

1st Page is index.php:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml” dir=”ltr”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″ />
<title>SMOOTH POP UP MADE BY RAJAT</title>
<link rel=”stylesheet” href=”css/general.css” type=”text/css” media=”screen” />
<script src=”js/jquery-1.2.6.min.js” type=”text/javascript”></script>
<script src=”js/popup.js” type=”text/javascript”></script>
</head>
<body>
WELCOME THIS IS MY FIRST [...]

  • Share/Bookmark

This code will give you the date after 30 days and number of days between any two dates.Sometimes it is required in a program to get a particular date and the difference between two dates. This code is short but essentially effective.
Calculating The Date After 30 Days:
function  next_date()    {
var d1==$(“# current_ date”).val();
// The [...]

  • Share/Bookmark

Firstly, you need to setup the FLASH page. For that you need to follow the given steps sequentially:
Step1: Select New Flash Document. Width:374px, Height:234px.
Step2: File > Import > Import to Stage > Select Image.
Step3: Select the Image –>Convert to Symbol and name the Symbol “Blur” > Chose Movie Clip.
Next, you need to create the blur [...]

  • Share/Bookmark
Tags:

In most of the places the Google map is loaded on page load time. But if we want to display the map inside a jquery tab (initially hidden), we need not require to load the map on page load. This will reduce the page loading time. Another problem of loading the map on page load [...]

  • Share/Bookmark

Total Quality Management is an integrative philosophy of management for continuous improvement of the quality of the products and processes.  It basically involves all the persons who create or consume the products or services offered by any organization. TQM capitalizes on the involvement of management, workforce, suppliers, and even customers, in order to meet or [...]

  • Share/Bookmark
Tags:

First I am telling you what is the main logic behind the lighbox. It is very simple & you can easily do it if you have a little knowledge of css & html.
1.    In a lightbox you can see a black box appers & it covers the whole browser – it is nothing but a [...]

  • Share/Bookmark

Below I list some quick tips to make a web page for a mobile device. Follow these and let me know how easy it was to create the web page for your mobile device.
Firstly, Sign up with Winksite.com. Winksite is a free mobile web page creation service that allows you   to quickly build mobile web [...]

  • Share/Bookmark

To create a pie chart, use the following code:
<script type=”text/javascript” src=”https://www.google.com/jsapi”></script>
<script type=”text/javascript”>
google.load(‘visualization’, ‘1.0′, {‘packages’:['corechart']});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn(’string’, ‘Topping’);
data.addColumn(‘number’, ‘Slices’);
data.addRows([
['Correct Answer', <?php echo $correct_answer_chart; ?>],
['Incorrect Answer', <?php echo $incorrect_answer_chart; ?>],
['Pending Ansewr', <?php echo $pending_answer_chart; ?>],
['Skiped Ansewr', <?php echo $skiped_answer_chart; ?>]
]);
var options = {‘title’:’Result’,
‘width’:600,
‘height’:300,
colors: ['#00CD00', '#e0440e', '#e5e599', '#cccccc']
};
var chart = new google.visualization.PieChart(document.getElementById(‘chart_div’));
chart.draw(data, options);
}
</script>
The above [...]

  • Share/Bookmark

In simple words, Content writing is providing significant text content for websites meant for promoting or endorsing the particular website. The content is as imperative as the website design. It is the content which holds the attention of users visiting the website. If the content is monotonous or uninteresting, then it would unfavorably influence the [...]

  • Share/Bookmark