Avoid re-sending form data on page refresh. Re-sending of form data brings about data duplication therefore re-sending/resubmitting of form data when a web page is refreshed/reloaded should be avoided. In this website development tip article I am going I tell you how you can avoid re-sending form...Read More
Posts Tagged "HTML"
-
-
Forms In HTML (Web Forms)
Wednesday, 9th May 2012Learn how to create forms in HTML (Web forms). Forms are created using the form tag. The form tag has several attributes which include; method, id, name, action, enctype, etc. Form controls / elements include; text, password, textarea, button, radio button, submit button, checkbox, reset button,...Read More -
Copying Text From A Textarea To Another Using JavaScript
Wednesday, 4th April 2012Learn how copying text from one textarea to another using JavaScript is done. In this tutorial the getElementById function / method is used to create a reference to the textarea where the text is to be copied from and the textarea where text is to be copied...Read More -
Retaining Search Term In The Text Field After Submitting
Friday, 23rd March 2012Learn how you can retain the search term in the text field after submitting the search form. In this tutorial PHP is used as the server side...Read More -
Descendant Selectors In CSS
Friday, 9th March 2012Learn about the descendant selectors in CSS. Learn how to use them when styling web...Read More -
CSS Type Selectors
Saturday, 25th February 2012Learn about the CSS type selector. Get to when, where and how to use it. Type selectors match the various element type as specified in the pattern. The type selector matches every instance of the element type in the document...Read More -
CSS Universal Selector
Saturday, 25th February 2012Learn about the CSS universal selector ( * ) - asterisk. Get to know how, where and when you should use this selector. The universal selector matches the name of any element type. If the universal selector is not the only component of a simple selector, the ( * ) may be...Read More -
CSS Text Shadow
Tuesday, 21st February 2012Learn how to add a drop shadow on text in a web page using a CSS property called text-shadow. The text-shadow property takes in 4 arguments i.e. color of the shadow, horizontal offset, vertical offset and the...Read More -
ID Selectors And Class Selectors
Tuesday, 21st February 2012Get to know when it is appropriate to use ID selectors instead of class selectors and vice versa in CSS. Several scenarios of website design tasks are given from which you can learn how to choose between ID selectors and CSS...Read More -
CSS Class Selectors
Monday, 20th February 2012Learn how to use the CSS class selectors to style your HTML documents (web pages). Get to know the pattern of the class selector. The class selector primarily matches elements through the value of their class...Read More
