Home >> Tutorials >> Javascript tutorials Previous page and Next page | Image button | Alert button Prompt button | Scrolling button | Rotating button | Confirmation button Can I use cool looking images as submit button instaed of the default submit button? Yes, you can use Image as submit buttons. When a visitor clicks an image button the form is sent to the…
Setting a text field value using javascript
Home >> Tutorials >> Advanced javascript tutorials Form validation Set field value Checkbox example Radio box example Move slected values from one list box to another Setting a text field value using javascript Some times you need to get or set values of form fields.The script that sets the value of form field. <INPUT TYPE=”button” VALUE=”Set Value” onClick=”this.form.feedback.value= ‘This…
Javascript – Check box examples
limit checkbox items selectedCheck/UnCheck all checkboxesinvert the selection of checkboxeslock the checkboxcheckboxes validation Page contents: itechies.net – Learn how to Lock/unlock the CheckBoxes,invert the CheckBoxe selection,Limit CheckBox Items Checked using javascript
Javascript Form
Home >> Tutorials >> Javascript tutorials Javascript Form Validation Javascript form validation is commonly used program in webdesign. Form validation is the process of checking that a form has been filled in correctly before it is processed. For example, if your form has a box for the user to type their email address, you might want your form handler…
Disable/Lock Radio Button
Home >> Tutorials >> Advanced javascript tutorials Automatically Selected Disable/Lock Radio Button Radio Button Links validate radio button A radio button is a circular button on your web page that can be selected by the user. How to create a radio buttonThe tag to put a radio button on your web site is <INPUT TYPE=”RADIO” NAME=”yes” VALUE=”1″>. Yes Automatically…
Giving Color to your HTML pages:
Home >> Tutorials >> Javascript tutorials coloring link coloring text coloring background Coloring text: Do you want to give cool color to the text in your webpage? You need two things to change text colors You need two things:1. A command to change the text.2. A color (hex) code. (1)We can color text using<body> tag: <body text=red>(2)coloring text by…
Javascript – Combo Box (Drop down link box):
Home >> Tutorials >> Javascript tutorials combo with button Combo with image as button combo without button load in new window Double combo Combo Remote Control combo box & frame The combo box is basically an HTML INPUT of type text and HTML SELECT grouped together to give you a combo box functionality. Combo box (select box)…
Javascript Image submit button
Javascript Image submit buttonPrevious page and Next pageImage buttonAlert buttonPrompt buttonScrolling buttonRotating buttonConfirmation button Can I use cool looking images as submit button instaed of the default submit button? Yes, you can use Image as submit buttons. When a visitor clicks an image button the form is sent to the address specified in the action setting…
JavaScript Button Effects
Home >> Tutorials >> Javascript tutorials Previous page and Next page Image button Alert button Prompt button Scrolling button Rotating button Confirmation button This is an example for displaying scrolling messages in a button using javascript.Eg: Source Code:<HTML> <body > <form name=”testform”> <input type=”button” name=”messagebutton” size=130 value=””> </form> <script language=”Javascript”> <!– var MessageText= “This is a test message for scrolling text on a button” var MsgPosition=0; var MsgSeperator…
Page Forwarding:
me >> Tutorials >> Javascript tutorials META for Automatic Page Forwarding You can use <META …> to tell the web browser to automatically move to another web page after a specified period of time..This will be very useful when you move your website to a new address. To transfer a visitor to a new URL/address, place the following line…