Home » Archive

Articles in the web development Category

JavaScript, web development »

[19 Oct 2010 | One Comment | ]

Multiple html buttons within single HTML label

When placing multiple html buttons within single html label, the following issue was found. Especially when using with the JavaScript functions for both buttons. The following code demonstrates the problem clearly. This example uses JQuery library
HTML code
< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>Div Drag/Resize Demo</title>
<script src="js/jquery.min.js"></script>
<script type="text/javascript">
 
$().ready(init);
function init(){
$(‘#txtinsert’).click(function(){alert("button1")});
$(‘#display’).click(function (){alert("button2")});
$(‘#display1′).click(function (){alert("button3")});
}
</script>
</head>
<body>
<label>
<input name="txtinsert" type="button" id="txtinsert" value="Insert Test" />
<input name="display" type="button" id="display" value="display" />
<input name="display1" type="button" id="display1" value="display1" />
</label>
</body>
</html>
 
In the …

web design, web development, web hosting »

[22 Aug 2010 | 2 Comments | ]
ipower hosting

IPower provides shared hosting and vps hosting services to the customers. They also provide windows hosting and there are several packages available in shared hosting as well. As far as I have used ipower hosting, I didn’t have any uptime  or bandwidth issues with them. Currently we are running several hosting with ipower and we refer our customers to host with ipower hosting as well.  From our customers we found that there were a slight delay in customer services from the ipower. But still we didn’t experience that issue.  I would like to provide a closer look of the …

Common, email, facebook, web development »

[4 Aug 2010 | One Comment | ]

iZoneDevelopers have introduced new facebook application to send free emails directly from facebook. The major benefit of this application is that, there is no need to login into your email accounts. Also this application provides WYSIWYG editor (word processing editor) while enable you to type and format your emails just in clicks. we are happy to inform that based on the success of this application we’ll add new features and also will provide free email addresses to all the users of facebook application.
Please follow the following link to use the …

featured, Headline, JavaScript, web design, web development »

[30 Jul 2010 | One Comment | ]
Confirmation using JavaScript

While I’m looking through the websites I have seen several websites are using server side scripting such as php,asp.net, jsp etc to get the confirmation from the users previous action.
I’ll make it clear with a small example…
When a user wants to delete a post, the user clicks on the delete button or link that performs the delete operation. Once he clicked usually the most best appropriate manner is to get confirm from the user whether he really wants to delete the post or he clicked that mistakenly. Because if he …

JavaScript, web design, web development »

[29 Jul 2010 | 2 Comments | ]

There are lots of web designers and web developers are around the world. Most of the website designers are those who have directly started web designing once they have finished the cause as a freelancer.  Actually its a very good job to start with, but there are some problems in the websites that are designed by the fresh freelance designers. Some of them are listed below.

No proper HTML standards are maintained.
Most of the webpage titles are missing
Empty HTML tags are not properly handled
Web pages does not contain any meta tags such as …

featured, Headline, Open Source, php, web development »

[8 Jun 2010 | No Comment | ]
php an introduction

PHP (Hypertext Preprocessor) is an open source, server-side, HTML embedded scripting language used to create dynamic Web pages. PHP script is embedded within a HTML document and the programmer can jump between HTML and PHP seamlessly within the document while the code remains inaccessible to users since it is processed on the server. It combines the power of CGI scripting with the ease of working within HTML.
PHP offers several key advantages:

Cross-platform operability
Compatibility with a wide variety of databases
Support for most current web servers
Communicates with numerous network protocols
Not limited to HTML …

Headline, php, web development »

[4 May 2010 | No Comment | ]
Web Development with php

The main topic is not actually about php or web development, but its closely related to that.  I like to share few things about the development tools that i have used for  web development for last few years. I don’t really stick with a single development tool for creating sites or web based softwares. But mostly i have used dreamweaver for development and designing purposes.
I have used the following editors and only few of them are impressed me in some areas.

Aptana
phpdesigner
Zend editor
eclipse
Netbeans
Dreamweaver

I have used several other editors also, but i’m …