You are here: Home »

When you handle events for a particular element, it is often required to make a change only within children of the element. Here is how to do it.
[click to continue…]

{ 3 comments }

In this tutorial, we will learn how to perform calculations using JavaScript. It is quite often required to do calculations online in order forms, request quote forms and the like. This tutorial will show you how to use different form elements like drop-down list, radio button, check box and text box in a calculation.

We will be using a ‘cake order form’ as an example. As the user makes selections in the form, the total price is calculated in real time.
[click to continue…]

{ 21 comments }

A Form Design Software that is Quick, Easy and Simple.

HTML Forms

HTML form design can often turn to be a tedious task. First, you need to design the HTML page that contains the form using an HTML editor. Next, you have to create a set of input validations using JavaScript. The final step is to create a form processor script that collects the data submitted in [...]

Read the full article →

How to make a web form and get it online quickly

HTML Forms

Coding a web form is a long, tedious process. However, there is an easier way. Using Simfatic Forms you can quickly create feature-rich web forms without coding. You just have to design the form using the visual editor; Simfatic Forms generates all the required code. You don’t have to worry about coding HTML, CSS JavaScript [...]

Read the full article →

Simfatic Forms Validation: save your time coding

HTML Forms

This is in continuation of the JavaScript form validation script explained here. Simfatic Forms is a complete web form development software. You can create forms add form validations, select your options for server side processing, generate the script and install the form on the web server. No coding required. This page takes you through some [...]

Read the full article →

JavaScript Form Validation Script: More features

HTML Forms

This is in continuation of the JavaScript Form Validation script in this page. In this page, we will see some of the advanced features of the script. Showing all the form validation errors together in a message box If you want to show all the error messages together, then just call the EnableMsgsTogether() function as [...]

Read the full article →

JavaScript Form Validation : quick and easy!

HTML Forms

Using client side JavaScript is an efficient way to validate the user input in web forms. When there are many fields in the form, the JavaScript validation becomes too complex. The JavaScript class presented here makes the form validations many times easier.

Read the full article →

Using the window.close method

JavaScript Popup Windows

It may be needed that you need to give a close link in the popup you created. The window.close () method could be used to close a window. However, there are certain security restrictions for using the close() method. The close method closes only windows opened by JavaScript using the open method. If you attempt [...]

Read the full article →

Using the window.open method

JavaScript Popup Windows

The syntax of the window.open method is given below: open (URL, windowName[, windowFeatures]) URL The URL of the page to open in the new window. This argument could be blank. windowName A name to be given to the new window. The name can be used to refer this window again. windowFeatures A string that determines [...]

Read the full article →

JavaScript Popup Windows

JavaScript Popup Windows

JavaScript popups are handy to display help information or to zoom in an Image. There are different types of Popups. The first type is a new browser window opened using the window.open() function. Such types of Popup windows were overused and exploited by many websites during the earlier days of the web. This resulted in [...]

Read the full article →