Never been to TextSnippets before?
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)
About this user
Disable a checkbox
<INPUT TYPE="checkbox" NAME="MyCheckbox" VALUE="Select Me" DISABLED> document.forms[0].MyCheckbox.disabled = true;
Check / Uncheck all checkboxes in a pseudo group
Javascript Code:
function checkUncheckAll(checkAllState, cbGroup) { // Check that the group has more than one element if(cbGroup.length > 0) { // Loop through the array for (i = 0; i < cbGroup.length; i++) { cbGroup[i].checked = checkAllState.checked; } } else { // Single element so not an array cbGroup.checked = checkAllState.checked; } }
HTML Code:
<input type=checkbox name=checkall onclick="checkUncheckAll(this, grp1);"> <input type=checkbox name=grp1 id=bx1> <input type=checkbox name=grp1 id=bx2> <input type=checkbox name=grp1 id=bx3> <input type=checkbox name=grp1 id=bx4>
Disable selecting text in HTML with javascript events
onmousedown will stop the selection in Firefox. IE will still select text though so you must also use onselectstart to keep IE from selecting the text.
<td onmousedown="return false;" onselectstart="return false;">