I have a checkbox on a page that is disabled until some criteria is met.
In an effort to give the user some information, I\'d like to have a \'tool tip\' display whe
If you don't want to wrap the checkbox in a div, then consider not diabling checkbox and modifying the built-in click event on the checkbox:
document.getElementById("checkboxId").addEventListener("click", function (event) {
event.preventDefault();
//The code you want to be run when the checkbox is clicked
});