Category: JavaScript and HTML

Fix for dynamic html form using javascript not working in IE and Mozilla.
This articles explains how to fix a dynamic html form using javascript not working in IE and Mozilla. In a non-AJAX setup, whenever a value needs to be submitted to the server indicating some action at the html-client side then an html form needs to be submitted which carries that value as an attribute or … Continue reading Fix for dynamic html form using javascript not working in IE and Mozilla.

Check Uncheck All Checkboxes in Html Using JavaScript
One of the most common javascript needs for a webpage which shows data in a table is to provide a facility to select a row of data via a checkbox. On top of such rows of data a “Select All” or “Unselect All” checkbox is provided. Checking of this global checkbox checks all row level checkboxes and unchecking of the global checkbox unchecks all row-level ones. The code below is a … Continue reading Check Uncheck All Checkboxes in Html Using JavaScript